Skip to content

build(deps-dev): bump @types/node from 25.9.3 to 26.1.0 #148

build(deps-dev): bump @types/node from 25.9.3 to 26.1.0

build(deps-dev): bump @types/node from 25.9.3 to 26.1.0 #148

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
permissions:
contents: read
pull-requests: read
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "24.x"
cache: npm
- run: npm ci
- run: npm run generate
- run: npm run typecheck
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "24.x"
cache: npm
- run: npm ci
- run: npm run generate
- run: npm run lint:check
format:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "24.x"
cache: npm
- run: npm ci
- run: npm run format:check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: "24.x"
cache: npm
- run: npm ci
- run: npm test