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 b2e41e6 commit 9c4c173Copy full SHA for 9c4c173
.github/workflows/frontend-ci.yml
@@ -0,0 +1,31 @@
1
+name: Frontend CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ paths:
7
+ - 'client/**'
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
+ defaults:
17
+ run:
18
+ working-directory: ./client
19
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Set up Node.js
23
+ uses: actions/setup-node@v2
24
+ with:
25
+ node-version: '>=18'
26
+ - name: Install dependencies
27
+ run: npm ci
28
+ - name: Run tests
29
+ run: npm test
30
+ - name: Build
31
+ run: npm run build
0 commit comments