Skip to content

Commit da79165

Browse files
authored
ci: add format check job to CI workflow (#182)
* run biome in the ci * fix format
1 parent cc9987a commit da79165

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/biome.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Code Quality
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
quality:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: read
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v5
14+
with:
15+
persist-credentials: false
16+
- name: Setup Biome
17+
uses: biomejs/setup-biome@v2
18+
- name: Run Biome
19+
run: biome ci .

0 commit comments

Comments
 (0)