Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-02-13 21:33:23 +0300
committerMike Greiling <mike@pixelcog.com>2017-02-14 01:22:24 +0300
commit9a3d2712941e01842f925beef2a3f0f6ca21434e (patch)
treedc1a272c0c3a059f6864c2e0487d2833c863f178 /.gitlab-ci.yml
parenta4c003632577116f55200d863a508220beacd2f2 (diff)
display yarn version and node version within CI logs
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 71d5dce7314..edf008d2793 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -107,6 +107,8 @@ setup-test-env:
<<: *dedicated-runner
stage: prepare
script:
+ - node --version
+ - yarn --version
- yarn install
- bundle exec rake gitlab:assets:compile
- bundle exec ruby -Ispec -e 'require "spec_helper" ; TestEnv.init'