2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-25 02:20:35 +03:00

chore: add audit to ci

This commit is contained in:
pimlie
2019-03-09 20:05:42 +01:00
committed by Alexander Lichter
parent 749f8d6228
commit 012873c9ac
+14 -3
View File
@@ -45,6 +45,16 @@ jobs:
name: Lint name: Lint
command: yarn lint command: yarn lint
audit:
<<: *defaults
steps:
- checkout
- attach_workspace:
at: ~/project
- run:
name: Security Audit
command: yarn audit
test-unit: test-unit:
<<: *defaults <<: *defaults
steps: steps:
@@ -72,6 +82,7 @@ workflows:
commit: commit:
jobs: jobs:
- setup - setup
- lint: { requires: [setup] } - lint: { requires: [setup] }
- test-unit: { requires: [lint] } - audit: { requires: [setup] }
- test-e2e: { requires: [lint] } - test-unit: { requires: [lint] }
- test-e2e: { requires: [lint] }