ci: move bundle analysis to separate job (#4361)

This commit is contained in:
ReenigneArcher 2025-10-25 21:15:23 -04:00 committed by GitHub
commit a7f03c25fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 36 additions and 5 deletions

29
.github/workflows/ci-bundle.yml vendored Normal file
View file

@ -0,0 +1,29 @@
---
name: CI-Bundle
permissions:
contents: read
on:
workflow_call:
secrets:
CODECOV_TOKEN:
required: false
jobs:
bundle_analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup node
id: node
uses: actions/setup-node@v6
- name: Install npm dependencies
run: npm install
- name: Build
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: npm run build