Skip to content

Commit

Permalink
Add node setup step in Android build workflows (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborszita authored Aug 22, 2024
1 parent 01156ee commit 9229280
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-android-debug-aab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install NPM Packages
working-directory: app
run: npm i
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-android-debug-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install NPM Packages
working-directory: app
run: npm i
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-android-release-aab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install NPM Packages
working-directory: app
run: npm i
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-android-release-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18'

- name: Install NPM Packages
working-directory: app
run: npm i
Expand Down

0 comments on commit 9229280

Please sign in to comment.