We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60693c9 + 6c1c1d4 commit 9a9a6e9Copy full SHA for 9a9a6e9
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Tests
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [main]
7
+ pull_request:
8
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - name: Setup Node.js
18
+ uses: actions/setup-node@v4
19
+ with:
20
+ node-version: "22"
21
22
+ - name: Install pnpm
23
+ uses: pnpm/action-setup@v4
24
25
+ version: 9
26
27
+ - name: Install dependencies
28
+ run: pnpm install
29
30
+ - name: Run tests
31
+ run: pnpm run test
0 commit comments