Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

f #110

Merged
merged 1 commit into from
Jul 27, 2024
Merged

f #110

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .github/workflows/biome.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Biome Check and Fix for Web
name: Biome Check for Web

on:
pull_request:
Expand All @@ -7,25 +7,20 @@ on:
- .github/workflows/biome.yaml

jobs:
biome-check-and-fix-for-web:
biome-check-for-web:
runs-on: ubuntu-latest
permissions:
contents: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install Bun
run: npm install -g bun
- name: Install dependencies
run: cd web && bun i
- name: Run Biome check and fix
- name: Run Biome check
run: |
cd web
bunx @biomejs/biome check --write .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: "web/**/*"
branch: ${{ github.head_ref }}
bunx @biomejs/biome check .
Loading