Skip to content

fix: avoid unnecessary scrolling with fractional sizes #337

fix: avoid unnecessary scrolling with fractional sizes

fix: avoid unnecessary scrolling with fractional sizes #337

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@8ade135a41bc03ea155e62e844d188df1ea18608 # tag=v4.1.0
- name: Setup node
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # tag=v3.8.1
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@0a8a5ba57593d67b2e45de2c543b438412382b7b # tag=v4.0.1
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