2020-06-13 11:14:52 +00:00
|
|
|
name: dev
|
|
|
|
|
2020-06-13 10:48:35 +00:00
|
|
|
on:
|
2020-06-13 10:47:09 +00:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
2020-06-13 11:14:52 +00:00
|
|
|
check:
|
2020-06-14 10:22:21 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-06-13 10:47:09 +00:00
|
|
|
steps:
|
2020-06-13 11:17:04 +00:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2020-06-13 11:09:06 +00:00
|
|
|
npm install
|
|
|
|
npm run all
|
2020-06-13 12:33:32 +00:00
|
|
|
- name: Test wrapper
|
2020-06-13 11:17:04 +00:00
|
|
|
uses: ./
|
2020-06-13 10:47:09 +00:00
|
|
|
with:
|
2020-06-13 11:10:37 +00:00
|
|
|
wrapper-directory: __tests__/data/basic
|
2020-06-13 10:47:09 +00:00
|
|
|
build-root-directory: __tests__/data/basic
|
|
|
|
arguments: help
|
2020-06-13 12:33:32 +00:00
|
|
|
- name: Test dist download
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
gradle-version: 6.5
|
|
|
|
build-root-directory: __tests__/data/basic
|
|
|
|
arguments: help
|
2020-06-13 11:46:53 +00:00
|
|
|
- name: Check for uncommitted changes
|
|
|
|
# Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed.
|
|
|
|
run: |
|
|
|
|
git diff --exit-code --stat -- . ':!node_modules' \
|
|
|
|
|| (echo "##[error] found changed files after build. please 'npm run all'" \
|
|
|
|
"and check in all changes" \
|
|
|
|
&& exit 1)
|