diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-02-07 16:34:05 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-02-13 12:23:02 -0600 |
commit | 86ace2a9470805cd110f61c928f0857289f9af63 (patch) | |
tree | d931c0652e4f3bb11e7d1f2987bf20d7c32ecefe /.gitlab-ci.yml | |
parent | 44406ae8db5587eabda2c69aef886f8c512b2ac3 (diff) | |
download | gitlab-ce-86ace2a9470805cd110f61c928f0857289f9af63.tar.gz |
remove unnecessary "npm install"s
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 733710bb005..f1df95ba618 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -246,7 +246,6 @@ karma: <<: *use-db <<: *dedicated-runner script: - - npm link istanbul - bundle exec rake karma artifacts: name: coverage-javascript @@ -326,8 +325,6 @@ lint:javascript: - node_modules/ stage: test image: "node:7.1" - before_script: - - npm install script: - npm --silent run eslint @@ -338,8 +335,6 @@ lint:javascript:report: - node_modules/ stage: post-test image: "node:7.1" - before_script: - - npm install script: - find app/ spec/ -name '*.js' -or -name '*.js.es6' -exec sed --in-place 's|/\* eslint-disable .*\*/||' {} \; # run report over all files - npm --silent run eslint-report || true # ignore exit code |