Skip to content

fix: bump @types/node from 24.10.9 to 25.6.2 #309

fix: bump @types/node from 24.10.9 to 25.6.2

fix: bump @types/node from 24.10.9 to 25.6.2 #309

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches-ignore: [built-main]
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
permissions:
actions: read
pull-requests: write
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: "package.json"
- name: Install deps
run: npm ci
- name: Build
run: npm run build:prod
- name: Check
run: npm run check:ci
- name: Test
run: npm run test:cov
- name: Bench
uses: Nerivec/action-ci-bench@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
compare-against: main
base-cmd: npx vitest bench --run --config ./test/vitest.config.mts --outputJson bench.json
compare-cmd: npx vitest bench --run --config ./test/vitest.config.mts --compare bench.json
base-result: bench.json
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [20, 22, 24]
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Install deps
run: npm ci
- name: Build
run: npm run build:prod
- name: Test
run: npm run test:cov