Skip to content

feat(http): add Http module (#7) #21

feat(http): add Http module (#7)

feat(http): add Http module (#7) #21

Workflow file for this run

name: test
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
NODEJS_VERSION: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.NODEJS_VERSION }}
cache: npm
- run: make _build
test:
runs-on: ubuntu-latest
strategy:
matrix:
NODEJS_VERSION: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
- run: make test
env:
NODEJS_VERSION: ${{ matrix.NODEJS_VERSION }}