Percy screenshots #16
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: Percy screenshots | |
on: | |
workflow_call: | |
workflow_dispatch: | |
concurrency: | |
group: screenshots-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
screenshots: | |
name: Send screenshots | |
runs-on: ubuntu-latest | |
env: | |
PERCY_PARALLEL_NONCE: ${{ github.run_id }}-${{ github.run_attempt }} | |
PERCY_TARGET_BRANCH: ${{ github.event.pull_request.base.ref }} | |
PERCY_TARGET_COMMIT: ${{ github.event.pull_request.base.sha }} | |
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} | |
# Skip when secrets are unavailable on forks | |
if: ${{ !github.event.pull_request.head.repo.fork }} | |
steps: | |
- name: Check secrets | |
if: ${{ !env.PERCY_TOKEN }} | |
run: echo "::warning title=GitHub Actions secrets::Workflow requires 'PERCY_TOKEN' secret" | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install dependencies | |
uses: ./.github/workflows/actions/install-node | |
- name: Cache browser download | |
uses: actions/[email protected] | |
with: | |
enableCrossOsArchive: true | |
key: puppeteer-${{ runner.os }} | |
path: .cache/puppeteer | |
- name: Build | |
uses: ./.github/workflows/actions/build | |
- name: Start review application | |
run: npm start --workspace app & | |
- name: Send screenshots to Percy | |
run: npx percy exec --parallel -- npm run test:screenshots | |
- name: Finalise Percy build | |
run: npx percy build:finalize |