File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Test Coverage Report - Practice TDD
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+ paths :
8+ - ' Sprint-3/2-practice-tdd/**'
9+
10+ jobs :
11+ test-coverage :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout code
16+ uses : actions/checkout@v3
17+
18+ - name : Setup Node.js
19+ uses : actions/setup-node@v4
20+ with :
21+ node-version : ' 20'
22+ cache : ' npm'
23+
24+ - name : Install dependencies
25+ run : npm ci
26+
27+ - name : Run Jest Tests with Coverage
28+ run : npx jest --config=jest.config.jest-tests.js --coverage --ci
Original file line number Diff line number Diff line change 1+ name : Test Coverage Report - Stretch
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - main
7+ paths :
8+ - ' Sprint-3/3-stretch/**'
9+
10+ jobs :
11+ test-coverage :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout code
16+ uses : actions/checkout@v3
17+
18+ - name : Setup Node.js
19+ uses : actions/setup-node@v4
20+ with :
21+ node-version : ' 20'
22+ cache : ' npm'
23+
24+ - name : Install dependencies
25+ run : npm ci
26+
27+ - name : Run Jest Tests with Coverage
28+ run : npx jest --config=jest.config.jest-tests.js --coverage --ci
You can’t perform that action at this time.
0 commit comments