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.
2 parents c76f108 + f82609f commit df92e64Copy full SHA for df92e64
.github/workflows/front-build.yml
@@ -0,0 +1,25 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [main, buildnet]
6
+ pull_request:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ node-version: "18"
16
+ cache: "npm"
17
+ cache-dependency-path: frontend/package-lock.json
18
19
+ - name: Install
20
+ run: npm ci
21
+ working-directory: frontend
22
23
+ - name: Build
24
+ run: npm run build
25
0 commit comments