-
Notifications
You must be signed in to change notification settings - Fork 1
117 lines (93 loc) · 2.99 KB
/
tests.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 installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Tests CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
frontend-tests:
name: Frontend Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: code/client
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: CI Frontend ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run coverage
- name: Upload frontend Unit test coverage report
uses: actions/upload-artifact@v3
with:
name: frontend-unit-coverage-report
path: ./code/client/coverage/lcov.info
backend-tests:
name: Backend Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: code/server
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: CI Backend ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
- run: npm run integration
- name: Upload backend unit test coverage report
uses: actions/upload-artifact@v3
with:
name: backend-unit-coverage-report
path: ./code/server/coverage/lcov.info
- name: Upload backend integration test coverage report
uses: actions/upload-artifact@v3
with:
name: backend-integration-coverage-report
path: ./code/server/coverage/integration/lcov.info
- name: Cypress E2E Tests
uses: cypress-io/github-action@v4
with:
name: Start Client and Server for E2E tests
start: npm run start:test --prefix ../server, npm run cy:client
working-directory: code/client
browser: firefox
install: false
build: npm i -D cypress
- name: Generate E2E coverage report
working-directory: code/client
run: npm run cy:coverage
- name: Upload frontend E2E test coverage report
uses: actions/upload-artifact@v3
with:
name: e2e-coverage-report
path: ./code/client/coverage/e2e/lcov.info
sonarcloud:
name: SonarCloud Analysis
runs-on: ubuntu-latest
needs: [backend-tests, frontend-tests]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Download artifacts
uses: actions/download-artifact@v3
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}