Skip to content

build(deps): bump @babel/traverse from 7.20.0 to 7.23.2 #216

build(deps): bump @babel/traverse from 7.20.0 to 7.23.2

build(deps): bump @babel/traverse from 7.20.0 to 7.23.2 #216

Workflow file for this run

name: Check coverage for PR
on:
pull_request:
jobs:
run-tests-check-coverage:
runs-on: ubuntu-20.04
name: Run tests & check coverage
permissions:
checks: write
pull-requests: write
steps:
- uses: actions/checkout@v3
- name: Install node
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'
- name: Jest coverage comment
id: coverage
uses: ArtiomTr/jest-coverage-report-action@df2b025553c31d68f84be6337843e277e2576844
with:
package-manager: yarn
output: report-markdown
- run: yarn test
- name: Read coverage text report
uses: fingerprintjs/action-coverage-report-md@v1
id: coverage-md
with:
srcBasePath: './src'
- uses: marocchino/sticky-pull-request-comment@adca94abcaf73c10466a71cc83ae561fd66d1a56
with:
message: |
${{ steps.coverage.outputs.report }}
<details>
<summary>Show full coverage report</summary>
${{ steps.coverage-md.outputs.markdownReport }}
</details>