I'm using GitLab's "CI Multi-Runner", which I have installed on Windows 2012 R2 instance. Builds start correctly and begin to run, but the build is marked as complete before it even runs my entire script.
.gitlab-ci.yml
build_web: script: - cd Web - npm install - jspm install - gulp build
Upon pushing, the pipeline runs through npm install
and then outputs "Build succeeded" and ends the build successfully (having skipped the following two commands).