chore(deps): update rollup to v4.24.2 #1144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ⚖ Bundlewatch on Push | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
bundlewatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v4 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version-file: '.nvmrc' | |
- name: 📥 Install deps | |
run: npm install | |
- name: 🛠️ Build | |
run: npm run build | |
- uses: jackyef/bundlewatch-gh-action@0.3.0 | |
with: | |
branch-base: main | |
bundlewatch-config: .bundlewatch.config.json | |
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} |