We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a0b3b1 commit 7e61a40Copy full SHA for 7e61a40
.github/workflow/test.yml
@@ -0,0 +1,33 @@
1
+name: Run tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "**"
7
+ pull_request:
8
9
+ - main
10
+ release:
11
+ types: [created]
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
17
+ steps:
18
+ - name: Checkout code
19
+ uses: actions/checkout@v3
20
21
+ - name: Setup Node
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: "22"
25
+ cache: "pnpm"
26
27
+ - name: Install dependencies
28
+ run: |
29
+ corepack enable
30
+ pnpm install
31
32
+ - name: Run tests
33
+ run: pnpm test
0 commit comments