Merge pull request #564 from zendesk/gianluca/update-translations #1833
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 | |
"on": [push] | |
jobs: | |
lighthouse: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: zendesk/checkout@v3 | |
- name: Setup Node.js | |
uses: zendesk/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
# The following step is needed to run puppeteer with ubuntu >= 23.10 | |
# ref: https://pptr.dev/troubleshooting#issues-with-apparmor-on-ubuntu | |
- name: Disable AppArmor | |
run: echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns | |
- name: Install node_modules | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- name: Upload theme | |
run: node ./bin/theme-upload.js | |
env: | |
ZENDESK_EMAIL: ${{ secrets.zendesk_email }} | |
ZENDESK_API_TOKEN: ${{ secrets.zendesk_token }} | |
ZENDESK_SUBDOMAIN: ${{ secrets.subdomain }} | |
BRAND_ID: ${{ secrets.brand_id }} | |
- name: Audit URLs using Lighthouse | |
run: yarn test-a11y | |
env: | |
end_user_email: ${{ secrets.end_user_email }} | |
end_user_password: ${{ secrets.end_user_password }} | |
subdomain: ${{ secrets.subdomain }} | |
urls: | | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/categories/360002267479 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/sections/360003307259 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/articles/360010829359 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/requests/new | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/search?utf8=%E2%9C%93&query=Help+Center | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/community/topics | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/community/topics/360000644279 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/community/posts | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/community/posts/360006766799 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/profiles/364655812519 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/contributions/posts?locale=en-us | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/subscriptions | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/requests | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/requests/3 | |
https://${{ secrets.subdomain }}.zendesk.com/hc/en-us/community/posts/new |