Skip to content

Add Node.js 20 in test workflow #31

Add Node.js 20 in test workflow

Add Node.js 20 in test workflow #31

Workflow file for this run

name: test
on:
pull_request:
branches:
- master
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [14, 16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: 'npm'
- run: npm install
- run: npm test