diff --git a/.github/workflows/integration-test-workflow.yml b/.github/workflows/integration-test-workflow.yml index 744d3db..cc291ae 100644 --- a/.github/workflows/integration-test-workflow.yml +++ b/.github/workflows/integration-test-workflow.yml @@ -63,3 +63,10 @@ jobs: HEAD_SHA=$(echo $(git rev-parse HEAD)) node -e "if(process.env.NX_BASE == '${BASE_SHA}') console.log('Base set correctly'); else { throw new Error('Base not set correctly!');}" node -e "if(process.env.NX_HEAD == '${HEAD_SHA}') console.log('Head set correctly'); else { throw new Error('Head not set correctly!');}" + + print-hello: + name: Print Hello + runs-on: ubuntu-latest + steps: + - name: Print Hello + run: echo "Hello, world!" diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 602bf8b..77ea5dd 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -24,3 +24,10 @@ jobs: working-directory: integration-test main-branch-name: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref_name }} runs-on: ${{ matrix.runs-on }} + + print-hello: + name: Print Hello + runs-on: ubuntu-latest + steps: + - name: Print Hello + run: echo "Hello, world!" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b71badc..db36a1b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,3 +76,10 @@ jobs: HEAD_SHA=$(echo $(git rev-parse HEAD)) node -e "if(process.env.NX_BASE == '${BASE_SHA}') console.log('Base set correctly'); else { throw new Error('Base not set correctly!');}" node -e "if(process.env.NX_HEAD == '${HEAD_SHA}') console.log('Head set correctly'); else { throw new Error('Head not set correctly!');}" + + print-hello: + name: Print Hello + runs-on: ubuntu-latest + steps: + - name: Print Hello + run: echo "Hello, world!"