2020-06-13 07:14:52 -04:00
|
|
|
name: dev
|
|
|
|
|
2020-06-13 06:48:35 -04:00
|
|
|
on:
|
2020-06-13 06:47:09 -04:00
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
2020-06-13 07:14:52 -04:00
|
|
|
check:
|
2020-06-13 06:47:09 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-06-13 07:17:04 -04:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2020-06-13 07:09:06 -04:00
|
|
|
npm install
|
|
|
|
npm run all
|
2020-06-13 07:17:04 -04:00
|
|
|
- name: Test
|
|
|
|
uses: ./
|
2020-06-13 06:47:09 -04:00
|
|
|
with:
|
2020-06-13 07:10:37 -04:00
|
|
|
wrapper-directory: __tests__/data/basic
|
2020-06-13 06:47:09 -04:00
|
|
|
build-root-directory: __tests__/data/basic
|
|
|
|
arguments: help
|
2020-06-13 07:46:53 -04: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)
|