-
Notifications
You must be signed in to change notification settings - Fork 3
74 lines (70 loc) · 2.37 KB
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Ensure Conventional Commits
uses: webiny/[email protected]
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- uses: nrwl/nx-set-shas@v3
- name: Check Formatting
run: |
if [[ $(npx nx format:check) ]]; then
npx prettier -w .
git diff --color | cat
exit 1
fi
- name: Lint
run: npx nx affected --target=lint --parallel=3
- name: Run Tests with Code Coverage
run: npx nx affected --target=test --parallel=3 --ci --coverage --coverageReporters=lcov
- name: Merge Coverage files
run: '[ -d "./coverage/" ] && ./node_modules/.bin/lcov-result-merger ./coverage/**/lcov.info ./coverage/lcov.info || exit 0'
- name: Create SPA Environment File
run: envsubst < apps/spa/src/environments/environment.template > apps/spa/src/environments/environment.prod.ts
env:
IS_PRODUCTION: true
ENVIRONMENT_NAME: 'ci'
RELEASE_VERSION: ${{ github.sha }}
API_URL: http://localhost:3000/
OAUTH_CONFIG: undefined
- name: Build
run: npx nx run-many -t build --all --parallel=3
- name: Start and prepare MongoDB for E2Es
run: ./tools/db/kordis-db.sh init e2edb
- name: Run E2Es
run: npm run serve:all:prod & (npx wait-on tcp:3000 && npx wait-on http://localhost:4200 && npx nx e2e spa-e2e)
env:
E2E_BASE_URL: http://localhost:4200/
MONGODB_URI: mongodb://127.0.0.1:27017/e2edb
ENVIRONMENT_NAME: 'ci'
RELEASE_VERSION: ${{ github.sha }}
SENTRY_KEY: ${{ secrets.SENTRY_KEY }}
PORT: 3000
- uses: actions/upload-artifact@v3
if: failure()
with:
name: e2e-test-results
path: test-results/
if-no-files-found: ignore
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}