From 2cfaa7faaa45167f079023e335fcdda095368ea1 Mon Sep 17 00:00:00 2001 From: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:20:05 -0700 Subject: [PATCH] chore: Remove circleci support. (#308) --- .circleci/config.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 853e882a..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: cimg/node:14.20 - steps: - - checkout - - - run: npm install - - run: npm run lint:all - - run: npm run build:min - - - run: mkdir -p reports/junit - - run: - command: npm run test:junit - environment: - JEST_JUNIT_OUTPUT: "./reports/junit/js-common-test-results.xml" - - - run: npm run check-typescript - - - run: - name: dependency audit - command: ./scripts/better-audit.sh - - - store_test_results: - path: reports/junit/ - - store_artifacts: - path: reports/junit/