Skip to content

fix: removed comments from Jest testing and added Action comment dashboard instead #73

fix: removed comments from Jest testing and added Action comment dashboard instead

fix: removed comments from Jest testing and added Action comment dashboard instead #73

Workflow file for this run

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