diff --git a/.circleci/config.yml b/.circleci/config.yml index 48a0973..9b047ce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ executors: # Define jobs jobs: # Job that always runs - test: + test1/test: executor: node-executor steps: - checkout @@ -63,10 +63,10 @@ workflows: build-test-deploy: jobs: # These jobs run on every commit - - test + - test1/test - build: requires: - - test + - test1/test # Conditional job: Deploy only runs on main branch - deploy: @@ -89,7 +89,7 @@ workflows: # Alternative workflow that runs only on tags release: jobs: - - test: + - tes1/test: filters: tags: only: /^v.*/ @@ -97,7 +97,7 @@ workflows: ignore: /.*/ - build: requires: - - test + - test1/test filters: tags: only: /^v.*/