diff --git a/.github/actions/bundle-size/action.yml b/.github/actions/bundle-size/action.yml index b3bc886bd..2c2eaf8fe 100644 --- a/.github/actions/bundle-size/action.yml +++ b/.github/actions/bundle-size/action.yml @@ -45,16 +45,12 @@ runs: - name: Checkout base branch uses: actions/checkout@v4 with: - # ref: "main" ref: ${{ inputs.branch }} path: br-base - - name: see what's in pr-base - shell: bash - run: ls -al ./br-base - - - name: setup - uses: ./br-base/.github/actions/setup + # main is checked out into ./br-base. It needs to be setup and built + # - name: setup + # uses: ./br-base/.github/actions/setup - name: Build main shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf8447d95..7c78751cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,17 +29,12 @@ jobs: - 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/**/dist/*.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]