Skip to content

Add bundle size analyzer to GH action #1963

Add bundle size analyzer to GH action

Add bundle size analyzer to GH action #1963

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
bundle_size:
runs-on: ubuntu-latest
steps:
- name: 📄 Bundle size report
uses: ./.github/actions/bundle-size # path to composite action
with:
paths: "packages/**/*.min.js"
onlyDiff: "true"
# branch: "develop" # branch to compare to
header: "Bundle size report" # PR comment header
# ghToken: ${{ secrets.GITHUB_TOKEN }} # github token
format:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Format
run: pnpm format
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