File tree 3 files changed +42
-2
lines changed
3 files changed +42
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 .
Original file line number Diff line number Diff line change 57
57
}
58
58
},
59
59
"css" : {
60
- "parser" : {
61
- "cssModules" : true
60
+ "formatter" : {
61
+ "enabled" : false
62
+ },
63
+ "linter" : {
64
+ "enabled" : false
62
65
}
63
66
}
64
67
}
You can’t perform that action at this time.
0 commit comments