Skip to content

Bump @types/node from 22.20.1 to 26.1.1 #6

Bump @types/node from 22.20.1 to 26.1.1

Bump @types/node from 22.20.1 to 26.1.1 #6

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-test-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm run build --workspaces --if-present
- run: npm run typecheck --workspaces --if-present
- run: npm test --workspaces --if-present
- run: npm run lint