We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2527ef4 commit 038b4eaCopy full SHA for 038b4ea
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,24 @@
1
+name: Build
2
+
3
+on:
4
+ pull_request:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - name: Set up Node.js
15
+ uses: actions/setup-node@v4
16
+ with:
17
+ node-version: 20
18
+ cache: npm
19
20
+ - name: Install dependencies
21
+ run: npm ci
22
23
+ - name: Build
24
+ run: npm run build
0 commit comments