Merge pull request #29 from gentlementlegen/development #74
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: Run Jest testing suite | |
on: | |
push: | |
branches: | |
- development | |
pull_request: | |
types: [opened, synchronize] | |
workflow_dispatch: | |
env: | |
NODE_ENV: "test" | |
jobs: | |
testing: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
# needed to use yarn v4 | |
- name: Enable corepack | |
run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20.10.0" | |
- uses: actions/checkout@master | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: yarn install | |
- name: Jest With Coverage | |
run: yarn test | |
- name: Add Jest Report to Summary | |
if: always() | |
run: echo "$(cat test-dashboard.md)" >> $GITHUB_STEP_SUMMARY |