diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-02-07 16:57:43 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-02-13 12:23:03 -0600 |
commit | 8beb5998a8356feeb4ce75f7d749407bdd9034bc (patch) | |
tree | 3625eaaba4a17eb92c917235efa0a12a64fdf65f /.gitlab-ci.yml | |
parent | 469bc859ce92b2ef8cb5be56376504e44e239197 (diff) | |
download | gitlab-ce-8beb5998a8356feeb4ce75f7d749407bdd9034bc.tar.gz |
replace npm run calls with yarn
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f1df95ba618..71d5dce7314 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -107,7 +107,7 @@ setup-test-env: <<: *dedicated-runner stage: prepare script: - - npm install + - yarn install - bundle exec rake gitlab:assets:compile - bundle exec ruby -Ispec -e 'require "spec_helper" ; TestEnv.init' artifacts: @@ -326,7 +326,7 @@ lint:javascript: stage: test image: "node:7.1" script: - - npm --silent run eslint + - yarn run eslint lint:javascript:report: <<: *dedicated-runner @@ -337,7 +337,7 @@ lint:javascript:report: image: "node:7.1" 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 + - yarn run eslint-report || true # ignore exit code artifacts: name: eslint-report expire_in: 31d |