Update .gitlab-ci.yml file

This commit is contained in:
Christoph Stahl 2022-02-03 20:28:20 +00:00
parent cfc7f0dc0d
commit 53c56bb2bb

View file

@ -12,7 +12,7 @@
# Stages run in sequential order, but jobs within stages run in parallel. # 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 # 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 stages: # List of stages for jobs, and their order of execution
- build - build
@ -20,5 +20,5 @@ build-job: # This job runs in the build stage, which runs first.
stage: build stage: build
script: script:
- echo "Compiling the code..." - echo "Compiling the code..."
- docker build -t honigle . - npm run build
- echo "Compile complete." - echo "Compile complete."