Skip to content

chore(deps-dev): Bump the dev-dependencies group with 9 updates #36

chore(deps-dev): Bump the dev-dependencies group with 9 updates

chore(deps-dev): Bump the dev-dependencies group with 9 updates #36

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- "**.md"
- "docs/**"
- "LICENSE"
pull_request:
branches: [main]
paths-ignore:
- "**.md"
- "docs/**"
- "LICENSE"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm run lint
typecheck:
name: Typecheck
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm run typecheck
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
- run: pnpm test
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm run build:clean