Skip to content

Enable prettier formatting for stories (#2961) #2027

Enable prettier formatting for stories (#2961)

Enable prettier formatting for stories (#2961) #2027

Workflow file for this run

name: CI
# Runs build and test on:
# every push to main
# every pull request with main branch as the base
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Check all package.json's and tsconfig.json's are in sync.
run: |
pnpm sync
git diff --no-ext-diff --quiet --exit-code
- name: Build libraries and distributions
run: pnpm build
- name: Types
run: pnpm types:check
- name: 📄 Bundle size report
uses: ./.github/actions/bundle-size # path to composite action
with:
paths: "packages/victory/dist/victory.min.js"
onlyDiff: "true"
header: "Bundle size report" # PR comment header
lint:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Lint
run: pnpm lint
test:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Test
run: pnpm jest