2020-08-11 09:01:48 -07:00
|
|
|
name: Build & Test
|
2020-07-14 08:41:00 -07:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
push:
|
|
|
|
branches:
|
2020-08-11 09:01:48 -07:00
|
|
|
- main
|
2020-07-14 08:41:00 -07:00
|
|
|
- releases/*
|
|
|
|
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:
|
2022-04-21 19:38:58 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-07-25 09:49:54 -07:00
|
|
|
|
2022-08-03 05:23:56 -07:00
|
|
|
- name: Setup node 16
|
2022-04-21 19:41:02 -07:00
|
|
|
uses: actions/setup-node@v3
|
2020-07-14 08:41:00 -07:00
|
|
|
with:
|
2022-08-03 05:23:56 -07:00
|
|
|
node-version: '16'
|
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:
|
2022-04-21 19:38:58 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2022-08-03 05:23:56 -07:00
|
|
|
- name: Setup node 16
|
2022-04-21 19:41:02 -07:00
|
|
|
uses: actions/setup-node@v3
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2022-08-03 05:23:56 -07:00
|
|
|
node-version: '16'
|
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:
|
2022-04-21 19:38:58 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2022-08-03 05:23:56 -07:00
|
|
|
- name: Setup node 16
|
2022-04-21 19:41:02 -07:00
|
|
|
uses: actions/setup-node@v3
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2022-08-03 05:23:56 -07:00
|
|
|
node-version: '16'
|
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
|
|
|
|
2021-02-02 15:33:00 -08:00
|
|
|
runSdkManager:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-08-03 03:39:25 -07:00
|
|
|
os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, windows-2019, windows-2022 ]
|
2021-02-02 15:33:00 -08:00
|
|
|
|
|
|
|
steps:
|
2022-04-21 19:38:58 -07:00
|
|
|
- uses: actions/checkout@v3
|
2021-02-02 15:33:00 -08:00
|
|
|
|
2022-08-03 05:23:56 -07:00
|
|
|
- name: Setup node 16
|
2022-04-21 19:41:02 -07:00
|
|
|
uses: actions/setup-node@v3
|
2021-02-02 15:33:00 -08:00
|
|
|
with:
|
2022-08-03 05:23:56 -07:00
|
|
|
node-version: '16'
|
2021-02-02 15:33:00 -08:00
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
|
|
|
|
- run: node dist/index.js
|
|
|
|
|
|
|
|
- run: sdkmanager --list
|
|
|
|
|
2020-08-11 10:44:45 -07:00
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-21 19:38:58 -07:00
|
|
|
- uses: actions/checkout@v3
|
2020-08-11 10:44:45 -07:00
|
|
|
|
2022-08-03 05:23:56 -07:00
|
|
|
- name: Setup node 16
|
2022-04-21 19:41:02 -07:00
|
|
|
uses: actions/setup-node@v3
|
2020-08-11 10:44:45 -07:00
|
|
|
with:
|
2022-08-03 05:23:56 -07:00
|
|
|
node-version: '16'
|
2020-08-11 10:44:45 -07:00
|
|
|
|
|
|
|
- run: npm ci
|
|
|
|
|
|
|
|
- run: npm run lint
|