Skip to content

Commit

Permalink
chore: print hello on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mandarini committed May 22, 2024
1 parent 76907e7 commit 9720cda
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/integration-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
7 changes: 7 additions & 0 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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!"

0 comments on commit 9720cda

Please sign in to comment.