From 95686b971522aea925e9a13b00e17fde91e63ead Mon Sep 17 00:00:00 2001 From: Julien Wajsberg Date: Mon, 9 Sep 2024 11:33:46 +0200 Subject: [PATCH] Remove CircleCI configuration from the old staging branch --- .circleci/config.yml | 51 -------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index d1bd476bd..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,51 +0,0 @@ -version: 2.1 -orbs: - node: circleci/node@5.0.1 - codecov: codecov/codecov@3.2.2 -jobs: - test: - executor: - name: node/default - tag: '16.13' - steps: - - checkout - - restore_cache: # special step to restore the dependency cache - # Read about caching dependencies: https://circleci.com/docs/2.0/caching/ - key: dependency-cache-{{ checksum "package.json" }} - - run: - name: install - command: npm install - - save_cache: # special step to save the dependency cache - key: dependency-cache-{{ checksum "package.json" }} - paths: - - ./node_modules - - run: - # Why only production? See: https://overreacted.io/npm-audit-broken-by-design/#what-next - name: audit - command: npm audit --omit=dev - - run: - name: lint - command: npm run lint - - run: - name: accessibility - command: npm run test:a11y || true - - run: - name: test - command: npm run test:coverage - - codecov/upload - -workflows: - test: - jobs: - - test - nightly: - triggers: - - schedule: - cron: '0 0 * * *' - filters: - branches: - only: - - master - - staging - jobs: - - test