We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b6b13c commit fd247eaCopy full SHA for fd247ea
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+concurrency:
8
+ group: ${{ github.workflow }}
9
+ cancel-in-progress: true
10
11
+jobs:
12
+ ci:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v6
18
19
+ - name: Setup Node.js
20
+ uses: actions/setup-node@v6
21
+ with:
22
+ node-version: 24
23
24
+ - working-directory: frontend
25
+ run: npm i && npm run build
0 commit comments