Skip to content

Commit

Permalink
plx
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed Apr 10, 2024
1 parent cb78bf5 commit 565219a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/check-expo-dev-client-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ jobs:
run: npx create-expo-app app
- name: Install expo-dev-client
working-directory: app
run: if npm view expo dist-tags | grep -q 'next:' ; then npm install expo@next else npm install expo@latest fi
run: |
if npm view expo dist-tags | grep -q 'next:' ; then
npm install expo@next
else
npm install expo@latest
fi
- name: Setup configuration
run: node ${{ env.SCRIPT_PATH }} setBundleIdentifier
- name: Expo prebuild
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/validate-yarn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ jobs:
- name: Perform yarn install in changed directories
working-directory: ${{ github.workspace }}
run: |
for directory in ${{ steps.changed-dirs.outputs.dirList }}
for DIR in ${{ steps.changed-dirs.outputs.dirList }}
do
echo "Yarn install in $directory"
cd "$directory" && yarn install --immutable --immutable-cache && cd ${{ github.workspace }}
echo "Yarn install in $DIR"
echo $(pwd)
cd "$DIR" && yarn install --immutable && cd ${{ github.workspace }}
done

0 comments on commit 565219a

Please sign in to comment.