From 3bde109e14715aef39fa927addaf360dddede7d6 Mon Sep 17 00:00:00 2001 From: Max Frederiksen <maxfrederiksen@Maxs-MacBook-Air.local> Date: Mon, 25 Nov 2024 14:22:40 +0100 Subject: [PATCH] Cleanup .gitlab-ci.tml --- .gitlab-ci.yml | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fdac18ef..4771f23e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,43 +10,3 @@ variables: JOB_TAG: ce-deploy-ui IMAGE_TAG_VAR: ce_deploy_ui_container_image_tag DOMAIN: ce-deploy-${INSTANCE}.cslab.esss.lu.se - -install-dependencies: - artifacts: - paths: - - .cache/* - - cache/Cypress - - node_modules - - .npm - -lint: - stage: check - script: - - npm run ci:code-quality - artifacts: - reports: - codequality: gl-codequality.json - -.test-components: - stage: test - image: cypress/browsers:node-20.10.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-1 - script: - - npm ci - - npm start & - - CHOKIDAR_USEPOLLING=true WATCHPACK_POLLING=true npx cypress run --component --browser ${BROWSER} - needs: [] # no requirements since it does an install - artifacts: - when: on_failure - paths: - - cypress/videos - - cypress/screenshots - -test-components-chrome: - extends: .test-components - variables: - BROWSER: chrome - -test-components-firefox: - extends: .test-components - variables: - BROWSER: firefox -- GitLab