Skip to content

Upgrade NodeJS versions in the CI config #8

Upgrade NodeJS versions in the CI config

Upgrade NodeJS versions in the CI config #8

Workflow file for this run

name: test
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [24, 25]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test