We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2361e3c commit a3e52caCopy full SHA for a3e52ca
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Test
2
+on:
3
+ push:
4
+ pull_request:
5
+ workflow_dispatch:
6
+
7
+jobs:
8
+ test:
9
+ name: Typecheck and Lint
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: pnpm/action-setup@v4
14
+ with:
15
+ version: 10
16
+ run_install: false
17
+ - uses: actions/setup-node@v4
18
19
+ node-version-file: 'package.json'
20
+ cache: pnpm
21
+ - name: Install Dependencies
22
+ run: pnpm install
23
+ - name: Typecheck
24
+ run: pnpm run typecheck
25
+ - name: Lint
26
+ run: pnpm run lint
0 commit comments