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 514e18b commit 5faa527Copy full SHA for 5faa527
1 file changed
.github/workflows/ci.yml
@@ -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
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