Skip to content

Commit

Permalink
chore: remove some logging steps in launch-template
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft committed Jun 28, 2024
1 parent cb90bd0 commit 76328ec
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions .nx/workflows/agents.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ launch-templates:
resource-class: 'docker_linux_amd64/medium'
image: 'ubuntu22.04-node20.11-v7'
init-steps:
- name: System Environment Variables
script: env
- name: List Installed Tools
script: ls -al $HOME
script: |
ls -al $HOME
echo "---------"
ls -al $NX_CLOUD_ENV
- name: Checkout
uses: 'nrwl/nx-cloud-workflows/v4/workflow-steps/checkout/main.yaml'
Expand Down Expand Up @@ -44,7 +45,10 @@ launch-templates:
base-branch: 'develop'

- name: 'Post Restore: List Installed Tools'
script: ls -al $HOME
script: |
ls -al $HOME
echo "---------"
ls -al $NX_CLOUD_ENV
- name: Install Node Modules
uses: 'nrwl/nx-cloud-workflows/v4/workflow-steps/install-node-modules/main.yaml'
Expand Down Expand Up @@ -165,6 +169,7 @@ launch-templates:
echo "✅ Done !"
- name: 'Post Step: List Installed Tools'
script: ls -al $HOME
- name: 'Post Step: System Environment Variables'
script: env
script: |
ls -al $HOME
echo "---------"
ls -al $NX_CLOUD_ENV

0 comments on commit 76328ec

Please sign in to comment.