From 218a07a7007727470e3c1d0464a8a0ec509ac47c Mon Sep 17 00:00:00 2001 From: Guillem Hernandez Sola Date: Wed, 25 Feb 2026 18:10:36 +0100 Subject: [PATCH] CircleCI out --- .circleci/config.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 1f553c1..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,33 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: cypress/base:8 - steps: - - checkout - - restore_cache: # special step to restore the dependency cache - key: dependency-cache-{{ checksum "package.json" }} - - run: - name: install-npm-wee - command: npm install - - save_cache: # special step to save the dependency cache - key: dependency-cache-{{ checksum "package.json" }} - paths: - - ./node_modules - - run: - name: clone-e2e-test - command: git clone https://github.com/contentful/the-example-app-e2e-tests.git ./test/e2e - - run: - name: install-e2e-test - command: cd ./test/e2e && npm install - - run: - name: test - command: npm run test - - store_artifacts: - path: /tmp/artifact-1 - - destination: artifact-file-cypress-result_`date +%Y-%m-%d_%H-%M-%S` - - - store_artifacts: - path: /tmp/artifacts -