Skip to content

chore(master): release 1.4.3 [skip-ci] (#362) #474

chore(master): release 1.4.3 [skip-ci] (#362)

chore(master): release 1.4.3 [skip-ci] (#362) #474

Workflow file for this run

name: Run tests
on:
push:
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test (Node ${{ matrix.node }})
timeout-minutes: 10
strategy:
matrix:
node: [22.x, 24.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm install
- run: npm test