This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
WIP: longer keepalive and headers timeouts (#75) #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
NODE_ENV: "test" | |
- name: Run Tests | |
run: npm run coverage | |
env: | |
NODE_ENV: "test" | |
CI: true | |
- name: Check coverage | |
run: npm run check-coverage | |
env: | |
NODE_ENV: "test" | |
CI: true |