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 b0d89a6 commit a4afa3eCopy full SHA for a4afa3e
.github/workflows/pull_request.yml
@@ -0,0 +1,33 @@
1
+name: Pull Request
2
+
3
+on:
4
+ pull_request:
5
+ types: [opened, synchronize, reopened]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v3
13
14
+ - name: Install pnpm
15
+ uses: pnpm/action-setup@v4
16
+ with:
17
+ version: 10
18
+ run_install: false
19
20
+ - name: Install Node.js
21
+ uses: actions/setup-node@v4
22
23
+ node-version: 20
24
+ cache: pnpm
25
26
+ - name: Install dependencies
27
+ run: pnpm install --frozen-lockfile
28
29
+ - name: build
30
+ env:
31
+ BASE_PATH: ${{ env.BASE_PATH }}
32
+ run: |
33
+ pnpm run build
0 commit comments