test: Remove comment in index.html of test-app #TASK-7103 #TASK-7099 #3624
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: "Task workflow for TASK-* branches" | |
on: | |
push: | |
branches: | |
- "TASK-*" | |
jobs: | |
build: | |
uses: ./.github/workflows/build-jsorolla-workflow.yml | |
test: | |
uses: ./.github/workflows/test.yml | |
needs: build | |
with: | |
test_profile: runShortTests | |
secrets: inherit | |
deploy-docker: | |
uses: ./.github/workflows/deploy-docker-jsorolla.yml | |
needs: test | |
with: | |
cli: python3 ./docker/docker-build.py push --tag ${{ github.ref_name }} | |
secrets: inherit |