Merge pull request #98 from kolplattformen/feature/add-audit-github-actions

Added audit to github actions
This commit is contained in:
Erik Hellman 2021-03-29 09:01:07 +02:00 committed by GitHub
commit 0edbc7ee01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,8 @@ jobs:
node-version: 14
- name: Install dependencies
run: yarn install --immutable --silent --non-interactive 2> >(grep -v warning 1>&2)
- name: Audit
run: yarn audit
- name: Build
run: yarn build
- name: Release

View File

@ -16,5 +16,6 @@ jobs:
with:
node-version: 14.x
- run: yarn install --immutable --silent --non-interactive 2> >(grep -v warning 1>&2)
- run: yarn audit
- run: yarn lint
- run: yarn test