chore(deps): bump next from 14.2.12 to 14.2.15 #103
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
# https://dev.to/joerismits/ensure-your-nextjs-apps-performance-is-top-notch-with-lighthouse-ci-and-github-actions-4ne8#integrate-lighthouse-ci-with-github-actions | |
# This action will run `npm install` and `npm run build` every time a new commit is pushed. | |
# It will then execute Lighthouse and upload the results. | |
# Because we added the LHCI_GITHUB_APP_TOKEN, the results will be attached as new status checks | |
# and will pass or fail based on the assert configuration in `.lighthouserc.json`. | |
name: Lighthouse | |
on: [push] | |
jobs: | |
lighthouse: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install && npm install -g @lhci/cli | |
- run: npm run build | |
- run: lhci collect | |
- run: lhci upload | |
env: | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} |