Skip to content

Bump @biomejs/biome from 1.9.1 to 1.9.2 #213

Bump @biomejs/biome from 1.9.1 to 1.9.2

Bump @biomejs/biome from 1.9.1 to 1.9.2 #213

Workflow file for this run

name: Deploy static content to Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
check-latest: true
- run: npm ci
- run: npm run build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: _site
- uses: actions/deploy-pages@v4
id: deployment