fix: yaml - cleanup section also had inline python issue #1634
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 CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lighthouse: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| - name: Install Lighthouse CI | |
| run: | | |
| npm install -g @lhci/cli@0.14.x | |
| - name: Run Lighthouse CI | |
| run: | | |
| lhci autorun --collect.staticDistDir=. --collect.url=http://localhost:8080/index.html --collect.url=http://localhost:8080/git-tracker.html --upload.target=temporary-public-storage |