Skip to content

chore(deps-dev): bump typescript from 5.9.3 to 7.0.2 #71

chore(deps-dev): bump typescript from 5.9.3 to 7.0.2

chore(deps-dev): bump typescript from 5.9.3 to 7.0.2 #71

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_call: {}
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Lint, typecheck, test, build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Format
run: npm run format:check
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test:run -- --passWithNoTests
- name: Build
run: npm run build