From 2bf8b1b1915f1c131fff37d061984eaca18b6eb0 Mon Sep 17 00:00:00 2001 From: niyibi250 Date: Mon, 29 Apr 2024 20:03:00 +0200 Subject: [PATCH] fix: check again the link #17 --- .github/workflows/workflow_for_ecomm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow_for_ecomm.yml b/.github/workflows/workflow_for_ecomm.yml index 50bad5e1..b64e4dbf 100644 --- a/.github/workflows/workflow_for_ecomm.yml +++ b/.github/workflows/workflow_for_ecomm.yml @@ -28,7 +28,7 @@ jobs: cache: 'npm' #this we help speed up the workflow by reusing dependencies from previous runs - run: npm ci #run dependencies installing we using ci in place of 'npm install' becouse ci(clearn install) is smooth and faster - run: npm run test --if-present #this line will run test script - - run: npm run lint --if-present + - run: npm run lint --if-present #this line will run the lint script if present - run: npm run build --if-present # we using if statement because initial the code have no build script in packege.json - run: npm run test:ci --if-present # this will run test with coverage flag