Skip to content

Dev test

Dev test #18

Workflow file for this run

name: CI Tests
on: [ push, pull_request ]
env:
CI: true
jobs:
ci-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
node-version: [12, 14, 16, 18, 20 ]
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-node@v3
name: Use Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test