update with tests

This commit is contained in:
Bryan MacFarlane
2019-09-21 08:56:30 -04:00
parent 6c7859e4c8
commit b2a87e0a71
10 changed files with 218 additions and 35 deletions

View File

@ -1,25 +0,0 @@
name: "PR Checks"
on: [pull_request, push]
jobs:
check_pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: "npm ci"
run: npm ci
- name: "npm run build"
run: npm run build
- name: "npm run test"
run: npm run test
- 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 build && npm run format'" \
"and check in all changes" \
&& exit 1)

17
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: "Test JavaScript Action"
on:
push:
branches:
- 'releases/*' # only run in release distribution branches
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- run: npm ci
- run: npm test
- uses: actions/typescript-action@releases/v1
with:
milliseconds: 1000