Skip to content

feat: add ProgressBar component #354

feat: add ProgressBar component

feat: add ProgressBar component #354

Workflow file for this run

name: Jest
on:
push:
branches: ['*']
permissions: read-all
jobs:
test:
name: Test
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
- name: Setup node
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # tag=v4.0.0
with:
node-version: 18
- name: Run tests
run: |
npm ci
npx lerna run prepack
npm run test-ci
env:
TZ: America/Toronto
- name: Publish test report
uses: mikepenz/action-junit-report@0831a82caad2465c31c6dd929978f640cb42556c # tag=v4.0.3
if: always()
with:
report_paths: build/junit.xml
- name: Publish coverage report
uses: 5monkeys/cobertura-action@4157521550018abbbd29dfdf1b5963e907ea37f0 # tag=v13
with:
path: coverage/cobertura-coverage.xml
minimum_coverage: 100
fail_below_threshold: true