File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Linting
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches :
7
+ - main
8
+
9
+ jobs :
10
+ publish-npm :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Checkout
14
+ uses : actions/checkout@v4
15
+
16
+ - name : Setup Node 22
17
+ uses : actions/setup-node@v4
18
+ with :
19
+ node-version : 22
20
+ registry-url : https://registry.npmjs.org/
21
+ cache : pnpm
22
+
23
+ - name : Setup PNPM
24
+
25
+
26
+ - name : Install
27
+ run : pnpm install --frozen-lockfile
28
+
29
+ - name : Check
30
+ run : pnpm check
Original file line number Diff line number Diff line change 8
8
"format" : " prettier --write ." ,
9
9
"db:dev" : " ./pocketbase/dev.sh" ,
10
10
"start" : " tsm ." ,
11
- "check" : " biome check"
11
+ "check" : " biome check && prettier --check . "
12
12
},
13
13
"license" : " MIT" ,
14
14
"dependencies" : {
You can’t perform that action at this time.
0 commit comments