diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 76040b3..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -image: 'registry.gitlab.com/shardus/dev-container' - -before_script: - - node -v - -stages: - - build - -cache: - paths: - - node_modules/ - -# Build Job: Compiles the code -build-job: - stage: build - script: - - echo "Compiling the code..." - - npm ci # Clean install of project dependencies - - 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." - -# Format Checker Job: Runs a code formatter -format-checker-job: - stage: build - script: - - echo "Running code formatter..." - - npm run format-check - - echo "Code formatting complete."