We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e1e18 commit d468550Copy full SHA for d468550
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,45 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+ types:
11
+ - opened
12
+ - reopened
13
+ - edited
14
+ - synchronize
15
16
+env:
17
+ HUSKY: 0 # Disables husky hooks
18
19
+concurrency: ${{ github.workflow }}-${{ github.ref }}
20
21
+jobs:
22
+ test:
23
+ name: Run All Tests
24
+ runs-on: ubuntu-latest
25
+ steps:
26
+ - name: Checkout Repo
27
+ uses: actions/checkout@v3
28
29
+ - name: Install pnpm
30
+ uses: pnpm/action-setup@v4
31
+ with:
32
+ version: 9
33
+ run_install: false
34
35
+ - name: Setup Node.js 20.x
36
+ uses: actions/setup-node@v3
37
38
+ node-version: 20.x
39
+ cache: "pnpm"
40
41
+ - name: Install dependencies
42
+ run: pnpm install
43
44
+ - name: Run Test Suite
45
+ run: pnpm test
0 commit comments