File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ' Check types'
2
+
3
+ on :
4
+ - ' push'
5
+ - ' pull_request'
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ' ubuntu-latest'
10
+ steps :
11
+ - uses : ' actions/checkout@v4'
12
+ - name : ' Install pnpm'
13
+ uses : ' pnpm/action-setup@v4'
14
+ with :
15
+ version : 9
16
+ - name : ' Use Node'
17
+ uses : ' actions/setup-node@v4'
18
+ with :
19
+ node-version : 20
20
+ cache : ' pnpm'
21
+ - name : ' Install dependencies'
22
+ run : ' pnpm install'
23
+ - name : ' Check types'
24
+ run : ' pnpm check'
Original file line number Diff line number Diff line change 10
10
"[javascript]" : {
11
11
"editor.defaultFormatter" : " vscode.typescript-language-features"
12
12
},
13
+ "[yaml]" : {
14
+ "editor.tabSize" : 2 ,
15
+ "editor.insertSpaces" : true
16
+ },
13
17
"typescript.preferences.quoteStyle" : " double"
14
18
}
You can’t perform that action at this time.
0 commit comments