Skip to content

Commit 63de7df

Browse files
Add .github/workflows/test.yml via sh1pt node-pnpm-test@1.0.0 (#399)
Co-authored-by: sh1pt-actions-fleet[bot] <287014002+sh1pt-actions-fleet[bot]@users.noreply.github.com> Co-authored-by: Anthony Ettinger <anthony@chovy.com>
1 parent aa3d26b commit 63de7df

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
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

Comments
 (0)