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

118 lines
2.3 KiB
YAML
Raw Permalink Normal View History

2020-08-11 09:01:48 -07:00
name: Build & Test
2020-07-14 08:41:00 -07:00
on:
push:
paths-ignore:
- '**.md'
jobs:
build:
2020-08-11 09:01:48 -07:00
runs-on: ubuntu-latest
2020-07-14 08:41:00 -07:00
steps:
2023-11-21 11:25:09 -08:00
- uses: actions/checkout@v4
2020-07-25 09:49:54 -07:00
- name: Setup node 20
2023-11-21 11:25:54 -08:00
uses: actions/setup-node@v4
2020-07-14 08:41:00 -07:00
with:
node-version: 20
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- run: npm ci
2020-07-25 09:49:54 -07:00
2020-07-14 08:41:00 -07:00
- run: npm run build
2020-07-25 09:49:54 -07:00
2022-08-03 05:27:53 -07:00
- name: Check if dist/index.js needs to be rebuilt
2022-08-03 05:56:56 -07:00
run: diff <(git status dist/index.js --short) <(echo -n "")
2022-08-03 05:27:53 -07:00
2020-08-11 10:44:45 -07:00
format-check:
runs-on: ubuntu-latest
steps:
2023-11-21 11:25:09 -08:00
- uses: actions/checkout@v4
2020-08-11 10:44:45 -07:00
- name: Setup node 20
2023-11-21 11:25:54 -08:00
uses: actions/setup-node@v4
2020-08-11 10:44:45 -07:00
with:
node-version: 20
2020-08-11 10:44:45 -07:00
- run: npm ci
2020-07-14 08:41:00 -07:00
- run: npm run format-check
2020-07-25 09:49:54 -07:00
2020-08-11 10:44:45 -07:00
test:
runs-on: ubuntu-latest
steps:
2023-11-21 11:25:09 -08:00
- uses: actions/checkout@v4
2020-08-11 10:44:45 -07:00
- name: Setup node 20
2023-11-21 11:25:54 -08:00
uses: actions/setup-node@v4
2020-08-11 10:44:45 -07:00
with:
node-version: 20
2020-08-11 10:44:45 -07:00
- run: npm ci
2020-07-14 08:41:00 -07:00
- run: npm test
2020-08-11 10:44:45 -07: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 13:20:30 -07:00
- macos-14
- macos-13
- macos-12
- windows-2022
- windows-2019
2023-11-21 11:32:42 -08:00
cmdline-tools-version:
- 12266719
- 11479570
- 11076708
2023-11-21 11:32:42 -08:00
- 10406996
- 9862592
- 9477386
- 9123335
- 8512546
steps:
2023-11-21 11:25:09 -08:00
- uses: actions/checkout@v4
- name: Setup node 20
2023-11-21 11:25:54 -08: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 08:08:42 -08:00
log-accepted-android-sdk-licenses: 'false'
2023-11-25 07:21:46 -08:00
- run: sdkmanager --list_installed
- run: sdkmanager --list
2020-08-11 10:44:45 -07:00
lint:
runs-on: ubuntu-latest
steps:
2023-11-21 11:25:09 -08:00
- uses: actions/checkout@v4
2020-08-11 10:44:45 -07:00
- name: Setup node 20
2023-11-21 11:25:54 -08:00
uses: actions/setup-node@v4
2020-08-11 10:44:45 -07:00
with:
node-version: 20
2020-08-11 10:44:45 -07:00
- run: npm ci
- run: npm run lint