From 7ce293f4a1c658fb4dd810e4dfa27678482a6fa2 Mon Sep 17 00:00:00 2001 From: "zaid.arain" Date: Tue, 23 Jul 2024 16:18:52 +1000 Subject: [PATCH] fix incorrect indentation --- .github/workflows/build-and-test-examples.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test-examples.yaml b/.github/workflows/build-and-test-examples.yaml index 6a09e4e55e..0eab8c69b8 100644 --- a/.github/workflows/build-and-test-examples.yaml +++ b/.github/workflows/build-and-test-examples.yaml @@ -6,6 +6,9 @@ on: merge_group: branches: [main] +env: + NX_CLOUD_ACCESS_TOKEN: ${{ secrets.TS_IMMUTABLE_SDK_NX_TOKEN }} + jobs: build: name: Build @@ -28,12 +31,12 @@ jobs: run: | find ./examples/passport -name 'node_modules' -prune -o -name 'package.json' -exec dirname {} \; > project-dirs.txt - - name: Install Dependencies - run: | - while IFS= read -r dir; do - echo "Installing dependencies for $dir" - (cd "$dir" && yarn install) - done < project-dirs.txt + - name: Install Dependencies + run: | + while IFS= read -r dir; do + echo "Installing dependencies for $dir" + (cd "$dir" && yarn install) + done < project-dirs.txt - name: Build Projects run: |