Skip to content

Commit

Permalink
ci: NPF-2894 add code coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
stas-nc committed Aug 14, 2023
1 parent 1b9c709 commit 336ed3e
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 10 deletions.
48 changes: 45 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,29 @@ on:
- '**'
tags-ignore:
- '**'
pull_request:
branches:
- '**'

jobs:
build_ilc:
name: Build ILC
runs-on: ubuntu-latest
strategy:
matrix:
branch:
- name: src
ref: ${{ github.ref }}
- name: dest
ref: ${{ github.base_ref }}
exclude:
- branch:
ref: ''

steps:
- uses: actions/checkout@v1
with:
ref: ${{ matrix.branch.ref }}

- uses: benjlevesque/[email protected]
id: sha7
Expand Down Expand Up @@ -46,12 +61,29 @@ jobs:
run: docker run namecheap/ilc_tmp:$SHA npm run test:ci

- name: Run server-side tests coverage
run: docker run --volume /artifacts/ilc/.test_output/server:/temporary namecheap/ilc_tmp:$SHA bash -c "npm run test:coverage && mv .nyc_output/* /temporary"
run: docker run --volume $(pwd)/artifacts/ilc/.test_output/server:/temporary namecheap/ilc_tmp:$SHA bash -c "npm run test:coverage && mv .nyc_output/* /temporary"

- uses: actions/upload-artifact@v2
with:
name: server-side-tests-artifacts
path: /artifacts/ilc/.test_output/server/
name: ${{ matrix.branch.name }}-server-side-tests-artifacts
path: artifacts/ilc/.test_output/server/

# - name: Code Coverage Report
# uses: irongut/[email protected]
# with:
# filename: artifacts/**/cobertura-coverage.xml
# badge: true
# format: markdown
# indicators: true
# output: both
# thresholds: '80 95'

# - name: Add Coverage PR Comment
# uses: marocchino/sticky-pull-request-comment@v2
# if: github.event_name == 'pull_request'
# with:
# recreate: true
# path: code-coverage-results.md

- name: Build the Docker image to test client-side
run: |
Expand Down Expand Up @@ -145,6 +177,16 @@ jobs:
name: e2e-tests-artifacts
path: e2e/.codecept_output

# coverage_report:
# name: PR Coverage Report
# runs-on: ubuntu-latest
# needs: [build_ilc, build_registry]
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: client-side-tests-artifacts
# path: /artifacts/ilc/.test_output/client/

push_images:
needs: [build_ilc, build_registry, e2e_tests]
name: Push images to registry
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Ignore artifacts:
ilc/public
.nyc_output
2 changes: 1 addition & 1 deletion ilc/nyc.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const path = require('path');

module.exports = {
all: true,
reporter: ['html', 'text'],
reporter: ['html', 'text', 'cobertura', 'json-summary'],
'check-coverage': true,

branches: 0,
Expand Down
7 changes: 1 addition & 6 deletions registry/.nycrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,5 @@
"check-coverage": true,
"lines": 90,
"per-file": true,
"exclude": [
"**/*.spec.ts",
"config",
"build",
"node_modules"
]
"exclude": ["**/*.spec.ts", "config", "build", "node_modules"]
}

0 comments on commit 336ed3e

Please sign in to comment.