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