2019-12-03 15:28:59 +00:00
|
|
|
name: Build and Test
|
|
|
|
|
2019-10-25 15:52:59 +01:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-12-03 15:28:59 +00:00
|
|
|
- releases/*
|
2019-12-09 21:54:42 +00:00
|
|
|
- users/ericsciple/*
|
2019-10-25 15:52:59 +01:00
|
|
|
|
|
|
|
jobs:
|
2019-12-03 15:28:59 +00:00
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1 # todo: switch to v2
|
|
|
|
- run: npm ci
|
|
|
|
- run: npm run build
|
|
|
|
- run: npm run format-check
|
|
|
|
- run: npm run lint
|
|
|
|
- run: npm run pack
|
|
|
|
- run: npm run gendocs
|
|
|
|
- name: Verify no unstaged changes
|
|
|
|
run: __test__/verify-no-unstaged-changes.sh
|
|
|
|
|
2019-10-25 15:52:59 +01:00
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2019-12-03 15:28:59 +00:00
|
|
|
runs-on: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
|
2019-10-25 15:52:59 +01:00
|
|
|
steps:
|
2019-12-03 15:28:59 +00:00
|
|
|
# Clone this repo
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v1 # todo: switch to V2
|
|
|
|
|
|
|
|
# Basic checkout
|
|
|
|
- name: Basic checkout
|
|
|
|
uses: ./
|
|
|
|
with:
|
|
|
|
ref: test-data/v2/basic
|
|
|
|
path: basic
|
2019-12-09 21:54:42 +00:00
|
|
|
# - name: Verify basic
|
|
|
|
# shell: bash
|
|
|
|
# run: __test__/verify-basic.sh
|
2019-12-03 15:28:59 +00:00
|
|
|
|
2019-12-09 21:54:42 +00:00
|
|
|
# # Clean
|
|
|
|
# - name: Modify work tree
|
|
|
|
# shell: bash
|
|
|
|
# run: __test__/modify-work-tree.sh
|
|
|
|
# - name: Clean checkout
|
|
|
|
# uses: ./
|
|
|
|
# with:
|
|
|
|
# ref: test-data/v2/basic
|
|
|
|
# path: basic
|
|
|
|
# - name: Verify clean
|
|
|
|
# shell: bash
|
|
|
|
# run: __test__/verify-clean.sh
|
2019-12-03 15:28:59 +00:00
|
|
|
|
2019-12-09 21:54:42 +00:00
|
|
|
# # Side by side
|
|
|
|
# - name: Side by side checkout 1
|
|
|
|
# uses: ./
|
|
|
|
# with:
|
|
|
|
# ref: test-data/v2/side-by-side-1
|
|
|
|
# path: side-by-side-1
|
|
|
|
# - name: Side by side checkout 2
|
|
|
|
# uses: ./
|
|
|
|
# with:
|
|
|
|
# ref: test-data/v2/side-by-side-2
|
|
|
|
# path: side-by-side-2
|
|
|
|
# - name: Verify side by side
|
|
|
|
# shell: bash
|
|
|
|
# run: __test__/verify-side-by-side.sh
|
2019-12-03 15:28:59 +00:00
|
|
|
|
2019-12-09 21:54:42 +00:00
|
|
|
# # LFS
|
|
|
|
# - name: LFS checkout
|
|
|
|
# uses: ./
|
|
|
|
# with:
|
|
|
|
# repository: actions/checkout # hardcoded, otherwise doesn't work from a fork
|
|
|
|
# ref: test-data/v2/lfs
|
|
|
|
# path: lfs
|
|
|
|
# lfs: true
|
|
|
|
# - name: Verify LFS
|
|
|
|
# shell: bash
|
|
|
|
# run: __test__/verify-lfs.sh
|