Skip to content

Feature: Upload notification modal #2184

Feature: Upload notification modal

Feature: Upload notification modal #2184

Workflow file for this run

name: Jest Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["**"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
- name: Install dependencies
run: npm install
- name: Run Jest tests with coverage
run: npx jest --config jest.config.js --runInBand --coverage --forceExit
- name: Upload coverage to Codecov
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
flags: javascript
name: jest-coverage
fail_ci_if_error: true
verbose: true