Test to separate applitools tests from other e2e tests #4892
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 audit | |
on: pull_request | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Wait for the Netlify Preview | |
uses: jakepartusch/wait-for-netlify-action@v1.4 | |
id: netlify | |
with: | |
site_name: 'keen-mayer-a86c8b' | |
max_timeout: 320 | |
- name: Audit using Lighthouse | |
uses: treosh/lighthouse-ci-action@v10 | |
with: | |
urls: ${{ steps.netlify.outputs.url }} | |
budgetPath: ./budget.json | |
uploadArtifacts: true | |
temporaryPublicStorage: true |