feat: add method "createEventRecorder" for syncEvent to record and re… #21
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: jest test | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
# Necessary to push the generated badges to the repo | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
# Necessary to generate the coverage report. | |
# Make sure to add 'json-summary' to the coverageReporters in jest options | |
- name: Tests | |
run: yarn && yarn run test:coverage | |
- name: Generating coverage badges | |
uses: jpb06/jest-badges-action@latest | |
with: | |
branches: master |