2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-06-20 00:00:32 +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
command: yarn lint
audit:
<<: *defaults
steps:
- checkout
- attach_workspace:
at: ~/project
- run:
name: Security Audit
command: yarn audit
test-unit:
<<: *defaults
steps:
@@ -72,6 +82,7 @@ workflows:
commit:
jobs:
- setup
- lint: { requires: [setup] }
- test-unit: { requires: [lint] }
- test-e2e: { requires: [lint] }
- lint: { requires: [setup] }
- audit: { requires: [setup] }
- test-unit: { requires: [lint] }
- test-e2e: { requires: [lint] }