fix: unit test #24
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: Validate changes against develop | |
on: | |
pull_request: | |
branches: ['develop'] | |
jobs: | |
linting-typechecking: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Project and Cache | |
uses: ./.github/actions/setup | |
- name: Linting, Typechecking | |
run: yarn lint | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Project and Cache | |
uses: ./.github/actions/setup | |
- name: Comment with Test Coverage | |
uses: dkershner6/jest-coverage-commenter-action@v1 | |
with: | |
github_token: '${{ secrets.GITHUB_TOKEN }}' | |
comment_prefix: '## Test Result' |