-
Notifications
You must be signed in to change notification settings - Fork 7
65 lines (57 loc) · 1.33 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: main
on: [push, pull_request]
jobs:
setup_stage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
- name: Setup Node
uses: actions/setup-node@v3.8.2
with:
node-version: "16"
client_dependencies:
needs:
- setup_stage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/setup-node@v3.8.2
with:
node-version: "16"
- name: Install client dependencies
run: |
cd client
npm install
cd ..
client_build:
needs:
- client_dependencies
runs-on: ubuntu-latest
steps:
- name: Build client
run: |
cd client
npm run build
cd ..
server_dependencies:
needs:
- setup_stage
runs-on: ubuntu-latest
steps:
- name: Install server dependencies
run: |
cd server
npm install
cd ..
testing:
needs:
- client_build
runs-on: ubuntu-latest
steps:
- name: Frontend Tests
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'master' || github.event_name == 'push' && github.ref == 'refs/heads/master' }}
run: |
cd client
npm run test
cd ..