Skip to content

release: 4.0.0 — stable, provenance publish workflow #46

release: 4.0.0 — stable, provenance publish workflow

release: 4.0.0 — stable, provenance publish workflow #46

Workflow file for this run

name: Run Tests
on:
push:
branches:
- 4.x
- master
- main
pull_request:
branches:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test