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