2022212033change first #7369
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: Lighthouse Report | |
on: | |
pull_request_target: | |
branches: | |
- main | |
- docusaurus-v** | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lighthouse-report: | |
permissions: | |
pull-requests: write # for marocchino/sticky-pull-request-comment | |
name: Lighthouse Report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Use Node.js | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build website fast | |
run: yarn build:website:fast | |
- name: Audit URLs using Lighthouse | |
id: lighthouse_audit | |
uses: treosh/lighthouse-ci-action@2f8dda6cf4de7d73b29853c3f29e73a01e297bd8 # 12.1.0 | |
with: | |
urls: | | |
http://localhost:3000 | |
http://localhost:3000/docs/installation | |
http://localhost:3000/docs/category/getting-started | |
http://localhost:3000/blog | |
http://localhost:3000/blog/preparing-your-site-for-docusaurus-v3 | |
http://localhost:3000/blog/tags/release | |
http://localhost:3000/blog/tags | |
configPath: ./.github/workflows/lighthouserc.json | |
uploadArtifacts: true | |
temporaryPublicStorage: true | |
- name: Format lighthouse score | |
id: format_lighthouse_score | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # 7.0.1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const results = ${{ steps.lighthouse_audit.outputs.manifest }} | |
const links = ${{ steps.lighthouse_audit.outputs.links }} | |
const createLighthouseReport = (await import(`${process.env.GITHUB_WORKSPACE}/admin/scripts/formatLighthouseReport.js`)).default; | |
const comment = createLighthouseReport({ results, links }); | |
core.setOutput("comment", comment); | |
- name: Add Lighthouse stats as comment | |
id: comment_to_pr | |
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # 2.9.0 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
number: ${{ github.event.pull_request.number }} | |
header: lighthouse | |
message: ${{ steps.format_lighthouse_score.outputs.comment }} |