Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ executors:
# Define jobs
jobs:
# Job that always runs
test:
test1/test:
executor: node-executor
steps:
- checkout
Expand Down Expand Up @@ -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:
Expand All @@ -89,15 +89,15 @@ workflows:
# Alternative workflow that runs only on tags
release:
jobs:
- test:
- tes1/test:
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/
- build:
requires:
- test
- test1/test
filters:
tags:
only: /^v.*/
Expand Down