-
Notifications
You must be signed in to change notification settings - Fork 2
30 lines (28 loc) · 867 Bytes
/
ci.yml
File metadata and controls
30 lines (28 loc) · 867 Bytes
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
name: Unit-Test-CI
on:
push:
branches: [ master, staging, development ]
pull_request:
branches: [ master, staging, development ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ArtiomTr/jest-coverage-report-action@v2
id: coverage-utils-js
with:
output: comment, report-markdown
- uses: marocchino/sticky-pull-request-comment@v2
with:
header: Contentstack Utils JS Coverage
recreate: true
message: ${{ steps.coverage-utils-js.outputs.report }}
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: JEST Tests
path: reports/junit/jest-*.xml
reporter: jest-junit
fail-on-error: true