diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 864ee6c..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,35 +0,0 @@ -image: 'registry.gitlab.com/shardus/dev-container' - -before_script: - - node -v - - npm ci # Clean install of project dependencies - -stages: - - build - -cache: - paths: - - node_modules/ - -format-job: - stage: build - script: - - echo "Running Prettier..." - - npm run format-check - - echo "Running Prettier complete." - -# Build Job: Compiles the code -build-job: - stage: build - script: - - echo "Compiling the code..." - - npm run compile - - echo "Compile complete." - -# Lint Job: Runs ESLint for code linting -lint-job: - stage: build - script: - - echo "Running ESlint..." - - npm run lint - - echo "Running ESlint complete."