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
|
|
|
|
2023-09-25 03:20:06 +03: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:
|
2023-09-25 03:20:06 +03:00
|
|
|
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
|
|
|
|
2023-09-25 03:20:06 +03: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:
|
2023-09-25 03:20:06 +03:00
|
|
|
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
|
|
|
|
2023-09-25 03:20:06 +03: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:
|
2023-09-25 03:20:06 +03:00
|
|
|
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
|
|
|
|
2021-02-03 01:33:00 +02:00
|
|
|
runSdkManager:
|
|
|
|
runs-on: ${{ matrix.os }}
|
2023-11-21 22:08:54 +02:00
|
|
|
name: ${{ matrix.os }} - ${{ matrix.cmdline-tools-version }}
|
2021-02-03 01:33:00 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2024-06-18 10:18:53 +03:00
|
|
|
os:
|
|
|
|
- ubuntu-24.04
|
|
|
|
- ubuntu-22.04
|
|
|
|
- ubuntu-20.04
|
2024-08-09 23:20:30 +03:00
|
|
|
- macos-14
|
2024-06-18 10:18:53 +03:00
|
|
|
- macos-13
|
|
|
|
- macos-12
|
|
|
|
- windows-2022
|
|
|
|
- windows-2019
|
2023-11-21 21:32:42 +02:00
|
|
|
cmdline-tools-version:
|
2024-10-29 20:11:09 +01:00
|
|
|
- 12266719
|
|
|
|
- 11479570
|
|
|
|
- 11076708
|
2023-11-21 21:32:42 +02:00
|
|
|
- 10406996
|
|
|
|
- 9862592
|
|
|
|
- 9477386
|
|
|
|
- 9123335
|
|
|
|
- 8512546
|
2021-02-03 01:33:00 +02:00
|
|
|
steps:
|
2023-11-21 21:25:09 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-03 01:33:00 +02:00
|
|
|
|
2023-09-25 03:20:06 +03:00
|
|
|
- name: Setup node 20
|
2023-11-21 21:25:54 +02:00
|
|
|
uses: actions/setup-node@v4
|
2021-02-03 01:33:00 +02:00
|
|
|
with:
|
2023-09-25 03:20:06 +03:00
|
|
|
node-version: 20
|
2021-02-03 01:33:00 +02:00
|
|
|
|
2023-09-25 03:03:19 +03:00
|
|
|
- name: Set up JDK 17
|
2023-12-04 16:51:26 +00:00
|
|
|
uses: actions/setup-java@v4
|
2023-09-25 03:03:19 +03:00
|
|
|
with:
|
|
|
|
java-version: 17
|
2023-09-25 03:53:00 +03:00
|
|
|
distribution: 'temurin'
|
2023-09-25 03:03:19 +03:00
|
|
|
|
2021-02-03 01:33:00 +02:00
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
|
2023-11-25 17:25:16 +02:00
|
|
|
- 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'
|
2021-02-03 01:33:00 +02:00
|
|
|
|
2023-11-25 17:21:46 +02:00
|
|
|
- run: sdkmanager --list_installed
|
|
|
|
|
2021-02-03 01:33:00 +02:00
|
|
|
- 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
|
|
|
|
2023-09-25 03:20:06 +03: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:
|
2023-09-25 03:20:06 +03:00
|
|
|
node-version: 20
|
2020-08-11 19:44:45 +02:00
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
|
|
|
|
- run: npm run lint
|