Skip to content

Commit

Permalink
fix incorrect indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
zaidarain1 committed Jul 23, 2024
1 parent 3978071 commit 7ce293f
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/build-and-test-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
merge_group:
branches: [main]

env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.TS_IMMUTABLE_SDK_NX_TOKEN }}

jobs:
build:
name: Build
Expand All @@ -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: |
Expand Down

0 comments on commit 7ce293f

Please sign in to comment.