Merge pull request #629 from periodo/dependabot/npm_and_yarn/mixmap-e… #646
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: end-to-end tests | |
on: [push, workflow_dispatch] | |
jobs: | |
dispatch-and-wait: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Dispatching end-to-end tests against $GITHUB_REF_NAME" | |
- name: "Dispatch workflow" | |
id: dispatch | |
uses: mathze/[email protected] | |
with: | |
owner: periodo | |
repo: periodo-tests | |
ref: master | |
token: ${{ secrets.WORKFLOW_DISPATCH_TOKEN }} | |
use-marker-step: true | |
workflow-name: run-tests-on-branch.yml | |
payload: | | |
{ "client_branch": "${{ github.ref_name }}" } | |
- run: echo 'Workflow log at https://github.com/periodo/periodo-tests/actions/runs/${{ steps.dispatch.outputs.run-id }}' | |
- name: "Wait for workflow completion" | |
id: wait | |
uses: mathze/[email protected] | |
with: | |
owner: periodo | |
repo: periodo-tests | |
ref: master | |
token: ${{ secrets.WORKFLOW_DISPATCH_TOKEN }} | |
run-id: ${{ steps.dispatch.outputs.run-id }} | |
wait-interval: 30s | |
- name: "Check workflow conclusion" | |
run: | | |
if [[ "success" != "${{ steps.wait.outputs.run-conclusion }}" ]]; then | |
echo "End-to-end tests failed (conclusion was <${{ steps.wait.outputs.run-conclusion }}>)" | |
exit 1 | |
else | |
echo "End-to-end tests succeeded" | |
fi |