chore(deps-dev): bump @storybook/addon-interactions from 8.4.6 to 8.4.7 #135
Workflow file for this run
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: Audit | |
# @TODO: add in more things like: | |
# - [ ] dead css checks | |
on: # yamllint disable-line rule:truthy | |
- push | |
jobs: | |
bundle-size: | |
name: Audit the bundle size | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
name: Setup Node.js @v20 | |
with: | |
cache: npm | |
node-version: 20.x | |
- run: npm ci | |
name: Install dependencies | |
- uses: jackyef/bundlewatch-gh-action@0.3.0 | |
name: Analyze using BundleWatch | |
with: | |
build-script: npm run build | |
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} | |
performance: | |
name: Audit the performance | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
name: Setup Node.js @v20 | |
with: | |
cache: npm | |
node-version: 20.x | |
- run: npm ci | |
name: Install dependencies | |
- run: npm install -g @lhci/cli@0.14.x | |
name: Install Lighthouse CLI | |
- run: npm run build | |
name: Build project | |
- run: lhci autorun | |
name: Run Lighthouse CI | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} |