Skip to content

Test against Node 16, 18, and 20 #240

Test against Node 16, 18, and 20

Test against Node 16, 18, and 20 #240

Workflow file for this run

name: CI
on:
push:
branches: [ master, 'v*' ]
pull_request:
branches: [ master, 'v*' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lint:js
- run: yarn test