Skip to content

fix: cap percentile chips at >99% and clarify beat-percentage meaning… #146

fix: cap percentile chips at >99% and clarify beat-percentage meaning…

fix: cap percentile chips at >99% and clarify beat-percentage meaning… #146

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: app/package-lock.json
- run: npm ci
working-directory: app
- run: npm run build
working-directory: app
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: app/package-lock.json
- run: npm ci
working-directory: app
- run: npm test
working-directory: app
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: app/package-lock.json
- run: npm ci
working-directory: app
- run: npm run lint
working-directory: app