diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0ccb91a..56551e5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ # Stages run in sequential order, but jobs within stages run in parallel. # # For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages -image: docker:latest +image: npm:latest stages: # List of stages for jobs, and their order of execution - build @@ -20,5 +20,5 @@ build-job: # This job runs in the build stage, which runs first. stage: build script: - echo "Compiling the code..." - - docker build -t honigle . + - npm run build - echo "Compile complete."