Skip to content

chore(deps-dev): bump the tooling group across 1 directory with 2 updates #49

chore(deps-dev): bump the tooling group across 1 directory with 2 updates

chore(deps-dev): bump the tooling group across 1 directory with 2 updates #49

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: lint / typecheck / test / audit / build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint (Biome)
run: npm run lint
- name: Typecheck (astro check)
run: npm run typecheck
- name: Unit tests (Vitest)
run: npm run test
- name: npm audit (moderate+)
run: npm run audit
- name: Build
run: npm run build