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 5f1742a commit 1e9828aCopy full SHA for 1e9828a
.github/workflows/build-check.yml
@@ -0,0 +1,26 @@
1
+name: PR Build Check
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build-check:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout Repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Setup Node.js
17
+ uses: actions/setup-node@v4
18
+ with:
19
+ node-version: 18
20
+ cache: npm
21
22
+ - name: Install Dependencies
23
+ run: npm install
24
25
+ - name: Build Project
26
+ run: npm run build
0 commit comments