Smoke Tests Stage #11
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: Smoke Tests Stage | |
on: | |
workflow_dispatch: # Enable manual trigger | |
workflow_run: | |
workflows: ["Build and deploy stage, beta, test release."] # Name of the workflow to depend on | |
types: | |
- completed # Trigger on workflow completion, whether success or failure | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] | |
total-shards: [16] | |
steps: | |
- name: Run Municipio Smoke Tests | |
uses: helsingborg-stad/municipio-smoke-tests@v1 | |
with: | |
sitemap-urls: ${{ vars.E2E_SITEMAP_URLS }} | |
shard: ${{ matrix.shard }} | |
total-shards: ${{ matrix.total-shards }} |