Skip to content

Commit 5faa527

Browse files
Add .github/workflows/ci.yml via sh1pt node-pnpm-ci@1.0.0
1 parent 514e18b commit 5faa527

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Managed by sh1pt Actions Fleet
2+
# pack: node-pnpm-ci@1.0.0
3+
# install: sh1pt-actions-store
4+
# hash: sha256:aa7aeaf3bddaf7bf324ceb02f46ab421bb229d5f5917fdb6f7a1a948a4a9fcce
5+
name: CI
6+
7+
on:
8+
push:
9+
branches: [main, master]
10+
pull_request:
11+
12+
permissions:
13+
contents: read
14+
15+
concurrency:
16+
group: ci-${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: true
18+
19+
jobs:
20+
build:
21+
runs-on: ubuntu-latest
22+
timeout-minutes: 15
23+
steps:
24+
- uses: actions/checkout@v4
25+
26+
- uses: pnpm/action-setup@v4
27+
with:
28+
version: 9
29+
30+
- uses: actions/setup-node@v4
31+
with:
32+
node-version: '22'
33+
cache: pnpm
34+
35+
- run: pnpm install --frozen-lockfile
36+
37+
- run: pnpm typecheck
38+
39+
- run: pnpm test

0 commit comments

Comments
 (0)