Skip to content
This repository was archived by the owner on Jun 23, 2026. It is now read-only.

chore(deps-dev): bump @biomejs/biome in the tooling group #28

chore(deps-dev): bump @biomejs/biome in the tooling group

chore(deps-dev): bump @biomejs/biome in the tooling group #28

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
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
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm run test
- name: Audit
run: npm run audit
- name: Build
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: dist
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v5