We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aa9db65 + d31ae5d commit b96b134Copy full SHA for b96b134
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
7
+concurrency:
8
+ group: ci-${{ github.head_ref }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ check:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - uses: pnpm/action-setup@v4
18
19
+ - uses: actions/setup-node@v4
20
+ with:
21
+ node-version: '20'
22
+ cache: 'pnpm'
23
24
+ - run: pnpm install --frozen-lockfile
25
26
+ - run: pnpm build
27
28
+ - run: pnpm test
29
30
+ - run: pnpm typecheck
package.json
@@ -1,6 +1,7 @@
{
"private": true,
"version": "0.1.2",
+ "packageManager": "pnpm@10.29.3",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
0 commit comments