From ceb0299140d972ce14b0d204bd1a04c8dfbfb2e9 Mon Sep 17 00:00:00 2001 From: Caralee Jackson Date: Fri, 19 Jul 2024 19:28:27 -0500 Subject: [PATCH] cleanup gitlab.ci --- .gitlab-ci.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 0337b23..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,45 +0,0 @@ -include: - - remote: 'https://gitlab.com/pod_security/shared-ci/-/raw/main/security.yml' - -image: 'registry.gitlab.com/shardus/dev-container' - -before_script: - - node -v - -stages: - - build - - appsec - -build-job: - cache: - paths: - - node_modules/ - stage: build - script: - - echo "Compiling the code..." - - npm install - - npm run test - - npm run compile - - echo "Compile complete." - -lint-checker-job: - cache: - paths: - - node_modules/ - stage: build - script: - - echo "Running ESlint..." - - npm install @typescript-eslint/eslint-plugin@5.48.0 --save-dev - - npm run lint - - echo "Running ESlint complete." - -format-checker-job: - cache: - paths: - - node_modules/ - stage: build - script: - - echo "Running Prettier..." - - npm install prettier --save-dev - - npm run format-check - - echo "Running Prettier complete."