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 6834f18 commit a4fde5eCopy full SHA for a4fde5e
.github/workflows/frontend.yml
@@ -0,0 +1,29 @@
1
+name: Frontend CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "**"
7
8
+jobs:
9
+ build-and-test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Copy config file
17
+ run: cp config.example.js config.js
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: 18
23
+ cache: "npm"
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Build project (prod)
29
+ run: npx webpack
0 commit comments