-
Notifications
You must be signed in to change notification settings - Fork 1.4k
41 lines (32 loc) · 1.08 KB
/
jest-coverage.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
name: Jest Coverage Check
on:
pull_request:
branches:
- develop
- main
- release/v*
jobs:
jest_coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: cd frontend && yarn install
# - name: Run Jest with Coverage
# run: |
# cd frontend && npm test --silent --coverageReporters text --coverageReporters json-summary --changedSince=origin/develop --passWithNoTests --maxWorkers=5 --ci --testResultsProcessor="jest-junit"
# yarn custom-coverage --verbose
- name: npm run test:changedsince
run: cd frontend && npm run test:changedsince
env:
CI: true
- name: Upload Coverage Results
uses: actions/upload-artifact@v2
with:
name: coverage
path: ./frontend/coverage
- name: Display Coverage Summary
run: |
echo "Coverage Summary:"
cat coverage/lcov-report/index.html | grep -oP '(?<=<span class="strong">).*(?=%</span>)' | tail -n 1