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 df31101 commit 0eea717Copy full SHA for 0eea717
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,35 @@
1
+# Managed by sh1pt Actions Fleet
2
+# pack: node-pnpm-test@1.0.0
3
+# install: sh1pt-actions-store
4
+# hash: sha256:14a3f6fdbc21be92e815a16317251c967e4fbd95a5daf98819e0c23e7d56bf4f
5
+name: test
6
+
7
+on:
8
+ pull_request:
9
+ push:
10
+ branches: [master]
11
12
+permissions:
13
+ contents: read
14
15
+jobs:
16
+ test:
17
+ runs-on: ubuntu-latest
18
+ timeout-minutes: 15
19
+ steps:
20
+ - uses: actions/checkout@v4
21
22
+ - uses: pnpm/action-setup@v4
23
+ with:
24
+ version: 9.12.0
25
26
+ - uses: actions/setup-node@v4
27
28
+ node-version: 22
29
+ cache: pnpm
30
31
+ - run: pnpm install --frozen-lockfile
32
33
+ - run: pnpm test
34
+ env:
35
+ CI: true
0 commit comments