Skip to content

Commit

Permalink
build(ci): update Node.js and JDK versions (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
timbru31 committed Jul 21, 2022
1 parent f263bf6 commit d1b8bdf
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: '16.x'

- name: Environment Information
run: |
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/smoke-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ jobs:
with:
node-version: '14.x'

- name: set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11

- name: Environment Information
run: |
node --version
npm --version
java --version
- uses: maxim-lobanov/setup-xcode@v1.4.1
with:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/smoke-test-ubuntu-ionic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: set up JDK 1.8
- name: set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 8
java-version: 11

- uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: '14.x'

- name: Environment Information
run: |
Expand All @@ -31,6 +31,7 @@ jobs:
npm i -g cordova @ionic/cli
ionic start lottie-smoke-test tabs --cordova --type angular --no-interactive --no-confirm
cd lottie-smoke-test
npx ng add @ionic/cordova-builders --skip-confirmation
ionic cordova platform add android@latest --no-interactive --confirm
sed -i '4i\ <preference name="GradlePluginKotlinEnabled" value="true" />' config.xml
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/smoke-test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: set up JDK 1.8
- name: set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 8
distribution: 'temurin'
java-version: 11

- uses: actions/setup-node@v3
with:
node-version: '12.x'
node-version: '14.x'

- name: Environment Information
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/smoke-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: set up JDK 1.8
- name: set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 8
distribution: 'temurin'
java-version: 11

- uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit d1b8bdf

Please sign in to comment.