WIP: feat: comment on the original pull/merge request when on error #77
Workflow file for this run
This file contains 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: 'coverage report' | |
on: | |
pull_request_target: | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE*' | |
- '**.gitignore' | |
- '**.md' | |
- '**.txt' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/dependabot.yml' | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ArtiomTr/jest-coverage-report-action@v2 | |
with: | |
test-script: npm test |