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 3264f8c commit 5780bd0Copy full SHA for 5780bd0
.github/workflows/build.yaml
@@ -0,0 +1,24 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: '20.x'
19
20
+ - name: Install dependencies and build
21
+ working-directory: ./web
22
+ run: |
23
+ npm install
24
+ npm run build
0 commit comments