chore: update version to 1.6.2 and add changelog entry for missing at… #282
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |