Skip to content

ci: remove node v4 and eol odds from ci matrix; add 16~21 (#1) #1

ci: remove node v4 and eol odds from ci matrix; add 16~21 (#1)

ci: remove node v4 and eol odds from ci matrix; add 16~21 (#1) #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['6', '8', '10', '12', '14', '16', '18', '20', '21']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm install
- run: npm test
env:
CI: true