We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d12b1d7 commit cff7515Copy full SHA for cff7515
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,26 @@
1
+name: Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
16
+ - uses: pnpm/action-setup@v3
17
+ name: Install pnpm
18
+ with:
19
+ version: 8
20
+ run_install: false
21
22
+ - name: Install dependencies
23
+ run: pnpm i
24
25
+ - name: Run tests
26
+ run: pnpm test
0 commit comments