[MPDX-8442] Localize more labels #297
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: Run LighthouseCI | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
lighthouse: | |
if: | | |
github.event.issue.pull_request | |
&& contains(github.event.comment.body, 'run lighthouse') | |
&& (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'CONTRIBUTOR') | |
&& contains(github.event.issue.labels.*.name, 'Preview Environment') | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.13.0 | |
- name: 📦 Install Dependencies | |
run: yarn install --immutable --immutable-cache | |
- name: 🚨 Run Lighthouse | |
run: yarn lighthouse | |
env: | |
secrets: '{"JWT_SECRET":"JWT_SECRET","OKTA_CLIENT_SECRET":"OKTA_CLIENT_SECRET"}' | |
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }} | |
MPDX_USERNAME: ${{ secrets.MPDX_USERNAME }} | |
MPDX_PASSWORD: ${{ secrets.MPDX_PASSWORD }} | |
PREVIEW_URL: 'https://${{ github.head_ref }}.${{ secrets.AMPLIFY_APP_ID }}.amplifyapp.com' | |
- name: Make a PR Comment | |
uses: thollander/actions-comment-pull-request@v2 | |
with: | |
filePath: lighthouse/lighthouse-results.md | |
comment_tag: lighthouse |