We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 568be2b commit c222b8bCopy full SHA for c222b8b
1 file changed
.github/workflows/typecheck.yml
@@ -0,0 +1,27 @@
1
+# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
2
+
3
+name: typecheck
4
+on:
5
+ pull_request:
6
+ branches:
7
+ - main
8
+ push:
9
10
11
+ workflow_dispatch:
12
13
+concurrency:
14
+ group: ${{ github.workflow }}-${{ github.ref }}
15
+ cancel-in-progress: true
16
17
+jobs:
18
+ test:
19
+ runs-on: ubuntu-latest
20
+ timeout-minutes: 5
21
+ steps:
22
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
23
+ - uses: andykenward/github-actions/setup-pnpm@b1f379eaf1cb5bd7f384d2a53e501c2d881eed4f #v1.0.2
24
+ with:
25
+ node-version: 20
26
+ - name: typecheck
27
+ run: pnpm run tsc:check
0 commit comments