Skip to content

chore(deps): bump actions/setup-node from 6 to 7 in the actions group… #112

chore(deps): bump actions/setup-node from 6 to 7 in the actions group…

chore(deps): bump actions/setup-node from 6 to 7 in the actions group… #112

Workflow file for this run

name: tests
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [22, 24, 26]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm test
- run: npm run coverage
- run: npm run test:pack