Skip to content

Update readme comment (#22) #12

Update readme comment (#22)

Update readme comment (#22) #12

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: [12, 14, 16]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm i
- run: npm run test