Skip to content

test(SCOUT): [BLA-1014] Test should run in the pipeline #356

test(SCOUT): [BLA-1014] Test should run in the pipeline

test(SCOUT): [BLA-1014] Test should run in the pipeline #356

Workflow file for this run

name: On Push
on:
push:
branches:
- BLA-1014
- beta
jobs:
install:
name: Install Dependencies
uses: ./.github/workflows/install.yml
with:
node_version: 18
validations:
name: Validations
needs: [ install ]
uses: ./.github/workflows/validations.yml
with:
node_version: 18
visual_tests:
name: Visual Regression Tests
needs: [ validations ]
if: ${{ !(contains(github.event.head_commit.message, 'chore') || contains(github.event.head_commit.message, 'ci')) }}
uses: ./.github/workflows/visual-test.yml
with:
node_version: 18
# deploy_docker_image:
# name: Deploy Docker Image
# needs: [ validations ]
# if: ${{ !(contains(github.event.head_commit.message, 'chore') || contains(github.event.head_commit.message, 'ci')) }}
# uses: ./.github/workflows/docker-image.yml
# with:
# node_version: 18
# secrets:
# DOCKERHUB_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKERHUB_TOKEN: ${{ secrets.DOCKER_PASSWORD }}