From 1ee68a8be53f4e7e973b9ffb51903ab925f4d9ac Mon Sep 17 00:00:00 2001 From: ryanformio Date: Thu, 5 Oct 2023 01:40:34 -0500 Subject: [PATCH] Will not run jobs on circleci --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72d0af3282..3a9358e6f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,3 +19,11 @@ jobs: command: npm test - store_artifacts: path: test-results.xml +workflows: + version: 2 + build-and-test: + jobs: + - build: + filters: + branches: + ignore: /.*/ \ No newline at end of file