HD-3340 drain stream when receiving an error on a PUT #958
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: tests | |
on: | |
push: | |
branches-ignore: | |
- 'development/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '10' | |
cache: 'npm' | |
- name: install dependencies | |
run: | | |
npm --verbose install | |
npm --verbose install --only=dev | |
- name: audit installed packages | |
run: npm audit --only=prod --production | |
- name: verify build | |
run: npm build | |
- name: JSDoc | |
run: npm run jsdoc | |
- name: unit, functional tests with coverage | |
run: npm run coverage | |
- name: "Prepare artifacts" | |
run: | | |
set -xv | |
mkdir artifacts | |
cp -a docs artifacts/ | |
cp -a coverage artifacts/ | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts |