Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/CI-time-tracker-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: npm audit --audit-level=moderate

ci-test:
name: Running unit tests
name: Unit tests and CodeCoverage
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
Expand Down Expand Up @@ -61,3 +61,8 @@ jobs:

- name: Run the test
run: npm run ci-test --if-present

- name: Generate coverage report
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: bash <(curl -s https://codecov.io/bash)
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 9.0.4.

## Metrics

[![codecov](https://codecov.io/gh/ioet/time-tracker-ui/branch/master/graph/badge.svg)](https://codecov.io/gh/ioet/time-tracker-ui)
<br/>Code Coverage Status

![CD process to deploy to App-Service service](https://github.com/ioet/time-tracker-ui/workflows/CD%20process%20to%20deploy%20to%20App-Service%20service/badge.svg)
<br/>CD Pipeline Status

## Prerequisites

### Node.js
Expand Down