Skip to content

fix: updated packages and moved yarn to bun #63

fix: updated packages and moved yarn to bun

fix: updated packages and moved yarn to bun #63

Workflow file for this run

name: Run Jest testing suite
on:
workflow_dispatch:
pull_request:
env:
NODE_ENV: "test"
jobs:
testing:
permissions: write-all
runs-on: ubuntu-latest
steps:
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Jest With Coverage
run: |
bun install --frozen-lockfile
bun run test
- name: Add Jest Report to Summary
if: always()
run: echo "$(cat test-dashboard.md)" >> $GITHUB_STEP_SUMMARY