Skip to content

Update GitHub Actions #544

Update GitHub Actions

Update GitHub Actions #544

Workflow file for this run

name: Builds, tests & co
on:
- push
- pull_request
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
node-version:
- 20
- 22
runs-on: ${{ matrix.os }}
steps:
- name: Checkout tree
uses: actions/checkout@v4
- name: Set-up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- name: Install npm packages
run: npm ci --ignore-scripts
- name: Run the tests
run: npm run test-all