Skip to content

Commit 0e0484f

Browse files
committed
Merge branch 'main' into newdata
2 parents 7639540 + 7519457 commit 0e0484f

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

.github/workflows/build.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
13+
- name: Install dependencies
14+
run: npm ci
15+
16+
- name: Build
17+
run: npm run build

.github/workflows/test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
14+
- name: Setup Biome
15+
uses: biomejs/setup-biome@v2
16+
with:
17+
version: latest
18+
19+
- name: Run Biome
20+
run: biome ci .

biome.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,11 @@
5757
}
5858
},
5959
"css": {
60-
"parser": {
61-
"cssModules": true
60+
"formatter": {
61+
"enabled": false
62+
},
63+
"linter": {
64+
"enabled": false
6265
}
6366
}
6467
}

0 commit comments

Comments
 (0)