Skip to content

Commit

Permalink
chore: yarn immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
vonovak committed Jan 29, 2025
1 parent b33bdb8 commit 70bb42d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
- name: Install dependencies
run: yarn install
run: yarn install --immutable
- name: Build android example app on old architecture
run: ./gradlew app:assembleDebug -PnewArchEnabled=false
working-directory: packages/example/android
Expand All @@ -43,7 +43,7 @@ jobs:
distribution: 'temurin'
java-version: '17'
- name: Install dependencies
run: yarn install
run: yarn install --immutable
- name: Build android example app on new architecture
run: ./gradlew app:assembleDebug -PnewArchEnabled=true
working-directory: packages/example/android
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: yarn
- name: Install dependencies and build website
run: |
yarn install
yarn install --immutable
yarn build
deploy:
if: github.event_name != 'pull_request'
Expand All @@ -53,5 +53,5 @@ jobs:
run: |
git config --global user.email "vonovak@gmail.com"
git config --global user.name "Vojtech Novak"
yarn install
yarn install --immutable
yarn deploy
4 changes: 2 additions & 2 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
working-directory: packages/example/ios
bundler-cache: true
- name: Install dependencies
run: yarn install
run: yarn install --immutable
- name: Install pods
run: RCT_NEW_ARCH_ENABLED=0 npx pod-install
working-directory: packages/example/ios
Expand All @@ -48,7 +48,7 @@ jobs:
working-directory: packages/example/ios
bundler-cache: true
- name: Install dependencies
run: yarn install
run: yarn install --immutable
- name: Install pods for new arch
run: RCT_NEW_ARCH_ENABLED=1 npx pod-install
working-directory: packages/example/ios
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: yarn install
- run: yarn install --immutable
- run: yarn typescript
- run: yarn prettier:check
- run: yarn lint
Expand All @@ -41,7 +41,7 @@ jobs:
node-version: lts/*
cache: 'yarn'
- name: Install Dependencies
run: yarn install
run: yarn install --immutable

- name: Create Release Pull Request or Publish
id: changesets
Expand Down

0 comments on commit 70bb42d

Please # to comment.