Skip to content

Commit 4196389

Browse files
committed
chore: adding a gitHub actions workflow for code quality checking
1 parent 9b9102b commit 4196389

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pull_request.yml

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

0 commit comments

Comments
 (0)