Skip to content

Merge pull request #490 from 5saviahv/headers #14

Merge pull request #490 from 5saviahv/headers

Merge pull request #490 from 5saviahv/headers #14

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# mocha nolonger supports node 10
node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run Tests
run: |
npm test