setup-android/.github/workflows/build-test.yml

118 lines
2.3 KiB
YAML
Raw Normal View History

2020-08-11 18:01:48 +02:00
name: Build & Test
2020-07-14 17:41:00 +02:00
on:
push:
paths-ignore:
- '**.md'
jobs:
build:
2020-08-11 18:01:48 +02:00
runs-on: ubuntu-latest
2020-07-14 17:41:00 +02:00
steps:
2023-11-21 21:25:09 +02:00
- uses: actions/checkout@v4
2020-07-25 18:49:54 +02:00
- name: Setup node 20
2023-11-21 21:25:54 +02:00
uses: actions/setup-node@v4
2020-07-14 17:41:00 +02:00
with:
node-version: 20
2020-07-25 18:49:54 +02:00
2020-07-14 17:41:00 +02:00
- run: npm ci
2020-07-25 18:49:54 +02:00
2020-07-14 17:41:00 +02:00
- run: npm run build
2020-07-25 18:49:54 +02:00
2022-08-03 15:27:53 +03:00
- name: Check if dist/index.js needs to be rebuilt
2022-08-03 15:56:56 +03:00
run: diff <(git status dist/index.js --short) <(echo -n "")
2022-08-03 15:27:53 +03:00
2020-08-11 19:44:45 +02:00
format-check:
runs-on: ubuntu-latest
steps:
2023-11-21 21:25:09 +02:00
- uses: actions/checkout@v4
2020-08-11 19:44:45 +02:00
- name: Setup node 20
2023-11-21 21:25:54 +02:00
uses: actions/setup-node@v4
2020-08-11 19:44:45 +02:00
with:
node-version: 20
2020-08-11 19:44:45 +02:00
- run: npm ci
2020-07-14 17:41:00 +02:00
- run: npm run format-check
2020-07-25 18:49:54 +02:00
2020-08-11 19:44:45 +02:00
test:
runs-on: ubuntu-latest
steps:
2023-11-21 21:25:09 +02:00
- uses: actions/checkout@v4
2020-08-11 19:44:45 +02:00
- name: Setup node 20
2023-11-21 21:25:54 +02:00
uses: actions/setup-node@v4
2020-08-11 19:44:45 +02:00
with:
node-version: 20
2020-08-11 19:44:45 +02:00
- run: npm ci
2020-07-14 17:41:00 +02:00
- run: npm test
2020-08-11 19:44:45 +02:00
runSdkManager:
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - ${{ matrix.cmdline-tools-version }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- ubuntu-22.04
- ubuntu-20.04
2024-08-09 23:20:30 +03:00
- macos-14
- macos-13
- macos-12
- windows-2022
- windows-2019
2023-11-21 21:32:42 +02:00
cmdline-tools-version:
- 12266719
- 11479570
- 11076708
2023-11-21 21:32:42 +02:00
- 10406996
- 9862592
- 9477386
- 9123335
- 8512546
steps:
2023-11-21 21:25:09 +02:00
- uses: actions/checkout@v4
- name: Setup node 20
2023-11-21 21:25:54 +02:00
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- run: npm ci
- run: npm run build
- name: Run setup-android
uses: ./
with:
cmdline-tools-version: ${{ matrix.cmdline-tools-version }}
2023-11-25 18:08:42 +02:00
log-accepted-android-sdk-licenses: 'false'
2023-11-25 17:21:46 +02:00
- run: sdkmanager --list_installed
- run: sdkmanager --list
2020-08-11 19:44:45 +02:00
lint:
runs-on: ubuntu-latest
steps:
2023-11-21 21:25:09 +02:00
- uses: actions/checkout@v4
2020-08-11 19:44:45 +02:00
- name: Setup node 20
2023-11-21 21:25:54 +02:00
uses: actions/setup-node@v4
2020-08-11 19:44:45 +02:00
with:
node-version: 20
2020-08-11 19:44:45 +02:00
- run: npm ci
- run: npm run lint