From 3325cce571018232d92be6992c5aade6b5298558 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:52:28 -0700 Subject: [PATCH] ci: remove CCI config --- .circleci/config.yml | 45 -------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 2ac2567..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,45 +0,0 @@ -version: 2.1 -orbs: - commitlint: conventional-changelog/commitlint@1.0.0 - node: circleci/node@5.1.0 -alias: - - &defaults - docker: - - image: cimg/node:lts - executor: node/default -jobs: - branch-job: - <<: *defaults - steps: - - checkout - - node/install-packages - - run: npm test - main-job: - <<: *defaults - steps: - - checkout - - node/install-packages - - run: npm test - - run: npx semantic-release -workflows: - version: 2 - commitlint: - jobs: - - commitlint/lint: - target-branch: main - branch-workflow: - jobs: - - branch-job: - filters: - branches: - ignore: - - main - main-workflow: - jobs: - - main-job: - context: - - scratch-npm-creds - filters: - branches: - only: - - main