diff options
author | Mike Greiling <mike@pixelcog.com> | 2017-02-13 12:33:23 -0600 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2017-02-13 16:22:24 -0600 |
commit | 9a3d2712941e01842f925beef2a3f0f6ca21434e (patch) | |
tree | dc1a272c0c3a059f6864c2e0487d2833c863f178 /.gitlab-ci.yml | |
parent | a4c003632577116f55200d863a508220beacd2f2 (diff) | |
download | gitlab-ce-9a3d2712941e01842f925beef2a3f0f6ca21434e.tar.gz |
display yarn version and node version within CI logs
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
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' |