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 4909e04 commit 023b520Copy full SHA for 023b520
.github/workflows/test.yaml
@@ -0,0 +1,31 @@
1
+# Ensures packages test correctly
2
+name: Test Packages
3
+
4
+on:
5
+ push:
6
7
+jobs:
8
+ test:
9
+ name: Test Packages
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ persist-credentials: false
15
16
+ - uses: pnpm/action-setup@v4
17
+ name: Install pnpm
18
19
+ - name: Setup NodeJS
20
+ uses: actions/setup-node@v4
21
22
+ node-version-file: '.node-version'
23
24
+ - name: Install dependencies
25
+ run: pnpm install
26
27
+ - name: Build
28
+ run: pnpm build
29
30
+ - name: Test
31
+ run: pnpm test
0 commit comments