Skip to content

Commit

Permalink
fix(ci): Remove Install dependency and Build step
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek-exists committed Sep 11, 2023
1 parent f62f36b commit b8c41cf
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit b8c41cf

Please sign in to comment.