Skip to content

Don't test Node versions that reached end of life #2

Don't test Node versions that reached end of life

Don't test Node versions that reached end of life #2

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [20, 22, "latest"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm test