From fab5a8c69124f685c2754fdb61cbe87999e47d0d Mon Sep 17 00:00:00 2001 From: Henna <62267575+HennaAbbas@users.noreply.github.com> Date: Mon, 27 Oct 2025 12:43:08 -0400 Subject: [PATCH] Update config.yml testing what happen when I cancel a regular job --- .circleci/config.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a833961..e65f4cb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,18 +2,25 @@ version: 2.1 jobs: test-coordinator: - type: no-op + docker: + - image: cimg/node:20.10 + steps: + - checkout + - run : sleep 1000 test-unit: docker: - image: cimg/node:20.10 steps: - checkout + - run : sleep 1000 workflows: build-test-deploy: jobs: - test-coordinator - - test-unit + - test-unit: + requires: + - test-coordinator #testing