This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (102 loc) · 3.17 KB
/
node.js.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI/CD
on:
push:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
test_backend_unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run back_unit
env:
ADMIN_INITIAL_PASSWORD: ${{secrets.ADMIN_INITIAL_PASSWORD}}
JWT_SECRET: ${{secrets.JWT_SECRET}}
MONGODB_URI: ${{secrets.MONGODB_URI}}
SESSION_SECRET: ${{secrets.SESSION_SECRET}}
VH_EMAIL: ${{secrets.VH_EMAIL}}
VH_EMAIL_PASSWORD: ${{secrets.VH_EMAIL_PASSWORD}}
- uses: codecov/codecov-action@v2
with:
flags: unit
fail_ci_if_error: true
verbose: true
test_frontend_unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run front_unit
env:
ADMIN_INITIAL_PASSWORD: ${{secrets.ADMIN_INITIAL_PASSWORD}}
JWT_SECRET: ${{secrets.JWT_SECRET}}
MONGODB_URI: ${{secrets.MONGODB_URI}}
SESSION_SECRET: ${{secrets.SESSION_SECRET}}
VH_EMAIL: ${{secrets.VH_EMAIL}}
VH_EMAIL_PASSWORD: ${{secrets.VH_EMAIL_PASSWORD}}
- uses: codecov/codecov-action@v2
with:
flags: unit
fail_ci_if_error: true
verbose: true
test_integration:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: mkdir screenshots
- run: npm run integration
env:
ADMIN_INITIAL_PASSWORD: ${{secrets.ADMIN_INITIAL_PASSWORD}}
JWT_SECRET: ${{secrets.JWT_SECRET}}
MONGODB_URI: ${{secrets.MONGODB_URI}}
SESSION_SECRET: ${{secrets.SESSION_SECRET}}
VH_EMAIL: ${{secrets.VH_EMAIL}}
VH_EMAIL_PASSWORD: ${{secrets.VH_EMAIL_PASSWORD}}
- uses: codecov/codecov-action@v2
with:
flags: integration
fail_ci_if_error: true
verbose: true
- uses: actions/upload-artifact@v2
with:
name: puppeteer-screenshots
path: screenshots/
if: always()