Skip to content

Commit

Permalink
Remove setup node
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGable committed Oct 1, 2024
1 parent 669710d commit a014a37
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,15 @@ jobs:
- name: Configure MapBox SDK
run: ./scripts/setup-mapbox-sdk.sh ${{ secrets.MAPBOX_SDK_DOWNLOAD_TOKEN }}

- name: Setup Node
uses: ./react-native/.github/actions/composite/setupNode
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm

- name: Install node modules
run: |
npm install
cd .. && npm install
- name: Setup Java
uses: actions/setup-java@v4
Expand Down Expand Up @@ -473,9 +480,15 @@ jobs:
run: |
./scripts/setup-mapbox-sdk.sh ${{ secrets.MAPBOX_SDK_DOWNLOAD_TOKEN }}
- name: Setup Node
id: setup-node
uses: ./react-native/.github/actions/composite/setupNode
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: npm

- name: Install node modules
run: |
npm install
cd .. && npm install
- name: Setup Ruby
uses: ruby/[email protected]
Expand Down

0 comments on commit a014a37

Please sign in to comment.