Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Oct 10, 2022
1 parent e00cbfa commit 2a7e0db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Android Build
on:
on:
push:
paths-ignore:
- 'ios/**'
Expand All @@ -20,10 +20,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Use Node.js 12.x
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
node-version: '16.x'

- name: Cache Node.js modules
id: node-cache
Expand Down Expand Up @@ -56,8 +56,8 @@ jobs:
name: Install Titanium CLI

# TODO: Cache sdk install
- run: ti sdk install 9.3.2.GA --force
name: Install SDK 9.3.2.GA
- run: ti sdk install 11.1.1.GA --force
name: Install SDK 11.1.1.GA

- name: Install ccache
run: brew install ccache
Expand All @@ -75,7 +75,7 @@ jobs:
with:
api-level: 29
target: playstore
script: npm run test:android -- --sdkVersion 9.3.2.GA
script: npm run test:android -- --sdkVersion 11.1.1.GA
disable-animations: false # defaulting to true, the commands sent to emulator to do this sometimes run too quickly after boot and cause "adb: device offline" failures

- name: Show summary of ccache configuration and statistics counters
Expand Down

0 comments on commit 2a7e0db

Please sign in to comment.