Compare commits

...

31 Commits

Author SHA1 Message Date
eric sciple 096b500552 . 2019-12-10 03:00:06 -05:00
eric sciple 59bb2dd7cd . 2019-12-10 02:58:11 -05:00
eric sciple 093dbebc2e . 2019-12-10 02:52:19 -05:00
eric sciple d79ea53307 . 2019-12-10 02:39:09 -05:00
eric sciple 0fa906a067 . 2019-12-10 02:31:36 -05:00
eric sciple 0b63af4c8c . 2019-12-10 02:07:58 -05:00
eric sciple 31d9a4bd37 . 2019-12-10 02:02:20 -05:00
eric sciple 154a05918b . 2019-12-10 02:01:59 -05:00
eric sciple 7a2b445a4b . 2019-12-10 01:53:49 -05:00
eric sciple eed20d30d5 . 2019-12-10 01:53:12 -05:00
eric sciple 4a1fa615de . 2019-12-10 01:52:10 -05:00
eric sciple 19fb09ae8f . 2019-12-10 01:50:41 -05:00
eric sciple bb56c8569a . 2019-12-10 01:44:30 -05:00
eric sciple ba329ee889 . 2019-12-10 01:42:25 -05:00
eric sciple a039094e93 . 2019-12-10 01:40:30 -05:00
eric sciple 64fcc0c59a . 2019-12-10 01:32:25 -05:00
eric sciple 35bb830cfd . 2019-12-09 20:07:49 -05:00
eric sciple 54a7542872 . 2019-12-09 20:06:34 -05:00
eric sciple 8ade6aebfa . 2019-12-09 20:04:52 -05:00
eric sciple bf32513e49 . 2019-12-09 19:39:49 -05:00
eric sciple 675d935214 . 2019-12-09 19:39:01 -05:00
eric sciple e7d8850882 . 2019-12-09 19:37:05 -05:00
eric sciple 1475d13f7a . 2019-12-09 19:36:02 -05:00
eric sciple 34b9c46c61 . 2019-12-09 19:31:21 -05:00
eric sciple 255d69d4c5 . 2019-12-09 19:26:59 -05:00
eric sciple c124b3fb75 . 2019-12-09 19:17:39 -05:00
eric sciple afff79a5a2 . 2019-12-09 19:16:06 -05:00
eric sciple 306dc1c898 . 2019-12-09 19:15:39 -05:00
eric sciple d415b27760 . 2019-12-09 17:06:03 -05:00
eric sciple 4af80cb867 . 2019-12-09 17:01:19 -05:00
eric sciple ad6dd29a96 fallback to REST API to download repo 2019-12-09 16:54:42 -05:00
9 changed files with 4093 additions and 841 deletions
+59 -58
View File
@@ -6,31 +6,32 @@ on:
branches: branches:
- master - master
- releases/* - releases/*
- users/ericsciple/*
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 # todo: switch to v2 - uses: actions/checkout@v2-beta
- run: npm ci # - run: npm ci
- run: npm run build # - run: npm run build
- run: npm run format-check # - run: npm run format-check
- run: npm run lint # - run: npm run lint
- run: npm run pack # - run: npm run pack
- run: npm run gendocs # - run: npm run gendocs
- name: Verify no unstaged changes # - name: Verify no unstaged changes
run: __test__/verify-no-unstaged-changes.sh # run: __test__/verify-no-unstaged-changes.sh
test: # test:
strategy: # strategy:
matrix: # matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest] # runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.runs-on }} # runs-on: ${{ matrix.runs-on }}
steps: # steps:
# Clone this repo # # Clone this repo
- name: Checkout