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 6509bd9 commit 2216b8cCopy full SHA for 2216b8c
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
+ workflow_dispatch:
11
12
+permissions:
13
+ contents: read
14
15
+jobs:
16
+ run-tests:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v5
21
22
+ - name: Setup pnpm
23
+ uses: pnpm/action-setup@v4
24
+ with:
25
+ version: 10.13.1
26
27
+ - name: Install dependencies
28
+ run: pnpm install --frozen-lockfile
29
30
+ - name: Run tests
31
+ run: pnpm run test
0 commit comments