Hi!
I try to configure a CI in GitLab but I am stuck with a problem.
Meteor don’t want to be run as root but the CI is run as root.
I am using a node dock and here is my commands:
# Official framework image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/node/tags/
image: node:latest
before_script:
# Meteor Installation
- curl -o meteor_install_script.sh https://install.meteor.com/
- chmod +x meteor_install_script.sh
- sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh
- ./meteor_install_script.sh
- export PATH=$PATH:~/.meteor/
build:
script:
- meteor run
test:
script:
- meteor test
I am using a shared runner on GitLab so it’s not launched in a server that I can modify…
Someone can help me?