Skip to content

v2.0.0-beta.1

v2.0.0-beta.1 #13

Workflow file for this run

name: ci:test
on:
- push
- pull_request
jobs:
test:
name: Test node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '10', '14', '16', '18', '20', 'lts/*' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test