chore(deps) Update dependency node-fetch to v3 #1589
This file contains hidden or 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: π¦ Lighthouse | |
| on: [push] | |
| jobs: | |
| lhci: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: πΎ Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: β Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - name: π₯ Download deps | |
| uses: bahmutov/npm-install@1a205a079a5a87cbf2753b117699494c5ea05169 | |
| with: | |
| useLockFile: false | |
| - name: ποΈ Build | |
| run: npm run build:ci | |
| - name: π¦ Run Lighthouse | |
| run: | | |
| npm install -g @lhci/[email protected] | |
| lhci autorun | |
| env: | |
| LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
| LHCI_TOKEN: ${{ secrets.LHCI_TOKEN }} |