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 f2e75ce commit 5ccecbcCopy full SHA for 5ccecbc
.github/workflows/pr-check.yml
@@ -0,0 +1,33 @@
1
+name: PR Check
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ name: Build and Type Check
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout Repo
14
+ uses: actions/checkout@v3
15
16
+ - uses: pnpm/action-setup@v4
17
+ with:
18
+ version: 9
19
20
+ - name: Setup Node.js environment
21
+ uses: actions/setup-node@v3
22
23
+ node-version: 20.5
24
+ cache: "pnpm"
25
26
+ - name: Install dependencies
27
+ run: pnpm install --frozen-lockfile
28
29
+ - name: Build library
30
+ run: pnpm build:lib
31
32
+ - name: Build d.ts files
33
+ run: pnpm build:lib:dts
0 commit comments