From d97609ae2d308e99a4441659ee96e824b75a0459 Mon Sep 17 00:00:00 2001 From: Mike Greiling Date: Tue, 8 Aug 2017 16:04:32 -0500 Subject: bypass faulty cache for node_modules --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 23d2e48662c..86c459a9f69 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -290,6 +290,8 @@ static-analysis: <<: *except-docs stage: test script: + - rm -r node_modules + - yarn install --pure-lockfile - scripts/static-analysis # Documentation checks: @@ -424,6 +426,8 @@ rake karma: variables: BABEL_ENV: "coverage" script: + - rm -r node_modules + - yarn install --pure-lockfile - bundle exec rake karma coverage: '/^Statements *: (\d+\.\d+%)/' artifacts: -- cgit v1.2.1