|
| 1 | +# Security Notes |
| 2 | +# This workflow uses `pull_request_target`, so will run against all PRs automatically (without approval), be careful with allowing any user-provided code to be run here |
| 3 | +# Only selected Actions are allowed within this repository. Please refer to (https://github.com/nodejs/nodejs.org/settings/actions) |
| 4 | +# for the full list of available actions. If you want to add a new one, please reach out a maintainer with Admin permissions. |
| 5 | +# REVIEWERS, please always double-check security practices before merging a PR that contains Workflow changes!! |
| 6 | +# AUTHORS, please only use actions with explicit SHA references, and avoid using `@master` or `@main` references or `@version` tags. |
| 7 | +# MERGE QUEUE NOTE: This Workflow does not run on `merge_group` trigger, as this Workflow is not required for Merge Queue's |
| 8 | + |
| 9 | +name: Lighthouse |
| 10 | + |
| 11 | +on: |
| 12 | + pull_request_target: |
| 13 | + branches: |
| 14 | + - main |
| 15 | + types: |
| 16 | + - labeled |
| 17 | + |
| 18 | +defaults: |
| 19 | + run: |
| 20 | + # This ensures that the working directory is the root of the repository |
| 21 | + working-directory: ./ |
| 22 | + |
| 23 | +permissions: |
| 24 | + contents: read |
| 25 | + actions: read |
| 26 | + # This permission is required by `thollander/actions-comment-pull-request` |
| 27 | + pull-requests: write |
| 28 | + |
| 29 | +jobs: |
| 30 | + lighthouse-ci: |
| 31 | + # We want to skip our lighthouse analysis on Dependabot PRs |
| 32 | + if: startsWith(github.event.pull_request.head.ref, 'dependabot/') == false |
| 33 | + |
| 34 | + name: Lighthouse Report |
| 35 | + runs-on: ubuntu-latest |
| 36 | + |
| 37 | + steps: |
| 38 | + - name: Git Checkout |
| 39 | + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 |
| 40 | + with: |
| 41 | + # Since we checkout the HEAD of the current Branch, if the Pull Request comes from a Fork |
| 42 | + # we want to clone the fork's repository instead of the base repository |
| 43 | + # this allows us to have the correct history tree of the perspective of the Pull Request's branch |
| 44 | + # If the Workflow is running on `merge_group` or `push` events it fallsback to the base repository |
| 45 | + repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} |
| 46 | + # We checkout the branch itself instead of a specific SHA (Commit) as we want to ensure that this Workflow |
| 47 | + # is always running with the latest `ref` (changes) of the Pull Request's branch |
| 48 | + # If the Workflow is running on `merge_group` or `push` events it fallsback to `github.ref` which will often be `main` |
| 49 | + # or the merge_group `ref` |
| 50 | + ref: ${{ github.event.pull_request.head.ref || github.ref }} |
| 51 | + |
| 52 | + - name: Add Comment to PR |
| 53 | + # Signal that a lighthouse run is about to start |
| 54 | + uses: thollander/actions-comment-pull-request@d61db783da9abefc3437960d0cce08552c7c004f # v2.4.2 |
| 55 | + with: |
| 56 | + message: | |
| 57 | + Running Lighthouse audit... |
| 58 | + # Used later to edit the existing comment |
| 59 | + comment_tag: 'lighthouse_audit' |
| 60 | + |
| 61 | + - name: Capture Vercel Preview |
| 62 | + uses: patrickedqvist/wait-for-vercel-preview@dca4940010f36d2d44caa487087a09b57939b24a # v1.3.1 |
| 63 | + id: vercel_preview_url |
| 64 | + with: |
| 65 | + token: ${{ secrets.GITHUB_TOKEN }} |
| 66 | + max_timeout: 90 |
| 67 | + |
| 68 | + - name: Git Checkout |
| 69 | + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 |
| 70 | + with: |
| 71 | + # By default Git Checkout on `pull-request-target` will checkout |
| 72 | + # the `default` branch of the Pull Request. We want to checkout |
| 73 | + # the actual branch of the Pull Request. |
| 74 | + ref: ${{ github.event.pull_request.head.ref }} |
| 75 | + |
| 76 | + - name: Audit Preview URL with Lighthouse |
| 77 | + # Conduct the lighthouse audit |
| 78 | + id: lighthouse_audit |
| 79 | + uses: treosh/lighthouse-ci-action@03becbfc543944dd6e7534f7ff768abb8a296826 # v10.1.0 |
| 80 | + with: |
| 81 | + # Defines the settings and assertions to audit |
| 82 | + configPath: './.lighthouserc.json' |
| 83 | + # These URLS capture critical pages / site functionality. |
| 84 | + urls: | |
| 85 | + ${{ steps.vercel_preview_url.outputs.url }}/en |
| 86 | + ${{ steps.vercel_preview_url.outputs.url }}/en/about |
| 87 | + ${{ steps.vercel_preview_url.outputs.url }}/en/about/previous-releases |
| 88 | + ${{ steps.vercel_preview_url.outputs.url }}/en/download |
| 89 | + ${{ steps.vercel_preview_url.outputs.url }}/en/blog |
| 90 | + uploadArtifacts: true # save results as a action artifacts |
| 91 | + temporaryPublicStorage: true # upload lighthouse report to the temporary storage |
| 92 | + |
| 93 | + - name: Format Lighthouse Score |
| 94 | + # Transform the audit results into a single, friendlier output |
| 95 | + id: format_lighthouse_score |
| 96 | + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 |
| 97 | + env: |
| 98 | + # using env as input to our script |
| 99 | + # see https://github.com/actions/github-script#use-env-as-input |
| 100 | + LIGHTHOUSE_RESULT: ${{ steps.lighthouse_audit.outputs.manifest }} |
| 101 | + LIGHTHOUSE_LINKS: ${{ steps.lighthouse_audit.outputs.links }} |
| 102 | + VERCEL_PREVIEW_URL: ${{ steps.vercel_preview_url.outputs.url }} |
| 103 | + with: |
| 104 | + # Run as a separate file so we do not have to inline all of our formatting logic. |
| 105 | + # See https://github.com/actions/github-script#run-a-separate-file for more info. |
| 106 | + script: | |
| 107 | + const { formatLighthouseResults } = await import('${{github.workspace}}/scripts/lighthouse/index.mjs') |
| 108 | + await formatLighthouseResults({core}) |
| 109 | +
|
| 110 | + - name: Add Comment to PR |
| 111 | + # Replace the previous message with our formatted lighthouse results |
| 112 | + uses: thollander/actions-comment-pull-request@d61db783da9abefc3437960d0cce08552c7c004f # v2.4.2 |
| 113 | + with: |
| 114 | + # Reference the previously created comment |
| 115 | + comment_tag: 'lighthouse_audit' |
| 116 | + message: | |
| 117 | + ${{ steps.format_lighthouse_score.outputs.comment }} |
0 commit comments