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 b5ab89b commit a5bca91Copy full SHA for a5bca91
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: Node.js CI
2
+
3
+on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
8
9
+jobs:
10
+ frontend:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Install frontend deps
15
+ run: npm install
16
+ working-directory: frontend
17
+ - name: Check ESLint Errors
18
+ run: npm run lint
19
20
+ - name: Build frontend
21
+ run: npm run build
22
23
+ backend:
24
25
26
27
+ - name: Install backend deps
28
29
+ working-directory: backend
30
+ - name: Run backend tests
31
+ run: npm test
32
0 commit comments