CI running on PR #1530: Bugfix/1529 font family regression #7
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: 🙈 Backstop & Docker CI | |
run-name: "CI running on ${{ github.event_name == 'pull_request' && format('PR #{0}: {1}', github.event.pull_request.number, github.event.pull_request.title) || format('latest {0}', github.ref_name) }}" | |
# Tests backstopjs alone, docker build, docker push to | |
# ghcr.io, docker pull from ghcr.io, and backstopjs in | |
# the docker docker build. | |
on: | |
workflow_dispatch: | |
# pull_request: | |
# branches: [master, develop] | |
permissions: | |
checks: write | |
contents: write | |
pull-requests: write | |
packages: write | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
jobs: | |
backstop-sanity-test: | |
name: Sanity Test Backstop | |
uses: ./.github/workflows/backstop-sanity-test.yml | |
backstop-smoke-test: | |
name: Smoke Test Backstop | |
uses: ./.github/workflows/backstop-smoke-test.yml | |
backstop-integration-test: | |
name: Integration Test Backstop | |
uses: ./.github/workflows/backstop-integration-test.yml | |
build-publish-docker: | |
name: Build Docker | |
uses: ./.github/workflows/docker-build.yml | |
docker-sanity-test: | |
needs: build-publish-docker | |
name: Sanity Test Docker | |
uses: ./.github/workflows/docker-sanity-test.yml | |
docker-smoke-test: | |
needs: build-publish-docker | |
name: Smoke Test Docker | |
uses: ./.github/workflows/docker-smoke-test.yml |