Skip to content

chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2 #1344

chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2

chore(deps-dev): Bump typescript from 5.9.3 to 6.0.2 #1344

Workflow file for this run

name: Node.js CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
env:
CI: true
FORCE_COLOR: 2
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run lint
test:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 22
- 24
- lts/*
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 ci
- run: npm run build --if-present
- run: npm run test:vi