From 60e2deec3e1bbab9c838d9e16786eb20ce79655e Mon Sep 17 00:00:00 2001 From: Ryan Lamb <4955475+kinyoklion@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:06:41 -0700 Subject: [PATCH] chore: Remove circleci config. (#111) Moved to github actions in previous PR, need to remove the circleci config. --- .circleci/config.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 0545c8a..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: 2 -jobs: - build: - docker: - - image: cimg/node:22.2.0 - steps: - - checkout - - - run: npm install - - run: npm run lint:all - - run: - command: npm test - environment: - JEST_JUNIT_OUTPUT: "reports/junit/js-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/