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 6f31cf6 commit 0d09541Copy full SHA for 0d09541
.github/workflows/test.yaml
@@ -0,0 +1,29 @@
1
+on:
2
+ - push
3
+ - pull_request
4
+
5
+jobs:
6
+ cache-and-install:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v4
12
13
+ - uses: pnpm/action-setup@v4
14
+ name: Install pnpm
15
+ with:
16
+ version: 8
17
+ run_install: false
18
19
+ - name: Install Node.js
20
+ uses: actions/setup-node@v4
21
22
+ node-version: 20
23
+ cache: 'pnpm'
24
25
+ - name: Install dependencies
26
+ run: pnpm install
27
28
+ - name: Run tests
29
+ run: pnpm test
0 commit comments