From 7a1bf48c4ad16b78a28a20dd25b128b769ff3833 Mon Sep 17 00:00:00 2001 From: Nils Tesdal <nils.tesdal@ntnu.no> Date: Sun, 11 Apr 2021 21:47:36 +0000 Subject: [PATCH] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index b9f2996..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,33 +0,0 @@ -stages: - - test - -variables: - npm_config_cache: "$CI_PROJECT_DIR/.npm" - CYPRESS_CACHE_FOLDER: "$CI_PROJECT_DIR/cache/Cypress" - -# https://gitlab.com/help/ci/caching/index.md -cache: - key: ${CI_COMMIT_REF_SLUG} - paths: - - .npm - - cache/Cypress - - node_modules - -test: - image: cypress/base:10 - stage: test - script: - # install dependencies - - npm ci - - # Kjør express-serveren i bakgrunnen - - npm start & - - # run Cypress tests - - npm test - artifacts: - when: always - paths: - - cypress/videos - - cypress/screenshots - expire_in: 1 week \ No newline at end of file -- GitLab