Skip to content

Fixing tests

Fixing tests #11

Workflow file for this run

name: test
on:
push:
concurrency:
group: branch-node-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 18, 20]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm run test