-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (53 loc) · 1.5 KB
/
ci-cd.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
name: FindFace Multi Mock CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
with:
node-version-file: .nvmrc
- name: Installing dependencies
run: npm install
- name: Linter Validation
run: npm run eslint
- name: Build
run: npm run build
- name: Run tests
run: npm run devops_coverage
- name: Run generate cobertura report
run: |
npm run generate_cobertura
mv ./coverage/cobertura-coverage.xml ./coverage.xml
- name: Codecov
uses: codecov/codecov-action@v3.1.0
with:
verbose: true
fail_ci_if_error: true
build_push_docker:
needs: test
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
with:
node-version-file: .nvmrc
- name: Installing dependencies
run: npm install
- name: Build
run: npm run build
- name: Build and push Docker images
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: ezequielmr94/findface-multi-mock
tags: latest