Skip to content

Release Candidate 1.7.0 #396

Release Candidate 1.7.0

Release Candidate 1.7.0 #396

Workflow file for this run

name: Tests
on: [ pull_request ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [ 18, 20, 22 ]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: build and test
run: |
npm ci
npm run build
npm run test
env:
CI: true