Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Bump @biomejs/biome from 1.8.3 to 1.9.4 #31

Bump @biomejs/biome from 1.8.3 to 1.9.4

Bump @biomejs/biome from 1.8.3 to 1.9.4 #31

Workflow file for this run

name: Pages
on:
push: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun install
- run: bun run build
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: "dist/"
deploy:
needs: build
if: github.ref_name == github.event.repository.default_branch
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- id: deployment
uses: actions/deploy-pages@v4