From b8c41cf5b184f8c9c4d804b980f81f295e3e2381 Mon Sep 17 00:00:00 2001 From: abhishek276533 Date: Tue, 12 Sep 2023 00:42:33 +0530 Subject: [PATCH] fix(ci): Remove Install dependency and Build step --- .github/workflows/ci.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9e973190..2405a4554 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,9 @@ jobs: node-version: "18.16.1" registry-url: "https://registry.npmjs.org" + - name: Check Yarn Version + run: yarn --version + - name: Install dependencies run: yarn @@ -33,16 +36,3 @@ jobs: echo "Linting or formatting checks failed. Please fix the issues." exit 1 fi - - - name: Install dependencies and Build generated code - run: | - cd recipes/next - yarn - yarn build - - - name: Check for build failures - run: | - if [ $? -ne 0 ]; then - echo "Build failed. Please fix the issues." - exit 1 - fi