Skip to content

build(deps-dev): Bump typescript from 6.0.3 to 7.0.2 #2

build(deps-dev): Bump typescript from 6.0.3 to 7.0.2

build(deps-dev): Bump typescript from 6.0.3 to 7.0.2 #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
verify:
name: Verify (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [22.12.0, 24.x]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run format:check
- run: npm run lint
- run: npm run typecheck
- run: npm run test:coverage
- run: npm run build
- run: npm run package:check