From 19832b4052c057382fa56d57ae99057cdb53d14f Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Mon, 7 May 2018 13:55:39 -0500 Subject: [PATCH 1/3] allow redos test to fail --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 232811802e..13f3129627 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ language: node_js jobs: + allow_failures: + - stage: security scan 🔐 + include: - stage: unit tests 👩🏽‍💻 script: npm run test:unit From b1518644243d6bcff469bc4159cef9d9d2aa219d Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Mon, 7 May 2018 14:05:40 -0500 Subject: [PATCH 2/3] fast_finish --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 13f3129627..0ce1382c6b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: node_js jobs: + fast_finish: true allow_failures: - stage: security scan 🔐 From 9b1c6aa3bf4db01e5d25f3eab41077f7d88f98cd Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Mon, 7 May 2018 14:07:14 -0500 Subject: [PATCH 3/3] move security scan to the end --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0ce1382c6b..94b155e074 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,10 +17,6 @@ jobs: - node_js: lts/* - node_js: node - - stage: security scan 🔐 - script: npm run test:redos - node_js: lts/* - - stage: lint ✨ script: npm run test:lint node_js: lts/* @@ -39,6 +35,10 @@ jobs: node_js: lts/* if: branch = master AND type = push + - stage: security scan 🔐 + script: npm run test:redos + node_js: lts/* + cache: directories: - node_modules