Update Reference Screenshots #15
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: 'Update Reference Screenshots' | |
on: | |
workflow_dispatch: | |
jobs: | |
build-core: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/workflows/actions/build-core | |
test-e2e: | |
strategy: | |
# This ensures that all screenshot shard | |
# failures are reported so the dev can | |
# review everything at once. | |
fail-fast: false | |
matrix: | |
# Divide the tests into n buckets | |
# and run those buckets in parallel. | |
# To increase the number of shards, | |
# add new items to the shard array | |
# and change the value of totalShards | |
# to be the length of the shard array. | |
shard: [1, 2, 3] | |
totalShards: [3] | |
needs: [build-core] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/workflows/actions/test-e2e | |
with: | |
shard: ${{ matrix.shard }} | |
totalShards: ${{ matrix.totalShards }} | |
update: true | |
update-reference-screenshots: | |
runs-on: ubuntu-latest | |
needs: [test-e2e] | |
steps: | |
- uses: actions/checkout@v3 | |
# Normally, we could just push with the | |
# default GITHUB_TOKEN, but that will | |
# not cause the build workflow | |
# to re-run. We use Ionitron's | |
# Personal Access Token instead | |
# to allow for this build workflow | |
# to run when the screenshots are pushed. | |
with: | |
token: ${{ secrets.IONITRON_TOKEN }} | |
- uses: ./.github/workflows/actions/update-reference-screenshots |