Skip to content

Commit

Permalink
skip node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
henninghall committed Dec 12, 2023
1 parent 215ddcc commit 08aa1cc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/e2e-tests-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-node@v3
with:
node-version: 14.18.1
cache: 'yarn'

- uses: actions/cache@v3
id: cache
with:
Expand All @@ -31,6 +26,12 @@ jobs:
./examples/Rn071/ios/DerivedData/Build/Products/Release-iphonesimulator/Rn071.app.dSYM
key: ${{ runner.os }}-${{ hashFiles('src/**', 'ios/**', 'examples/Rn071/src/**') }}

- uses: actions/setup-node@v3
if: steps.cache.outputs.cache-hit != 'true'
with:
node-version: 14.18.1
cache: 'yarn'

- name: Install npm dependencies (example project)
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ./examples/Rn071/
Expand Down

0 comments on commit 08aa1cc

Please sign in to comment.