Skip to content

Commit

Permalink
ci: build next recipe during Build and Test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisvxd committed Sep 12, 2023
1 parent 2a136ca commit f57eb86
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,18 @@ jobs:
echo "Linting or formatting checks failed. Please fix the issues."
exit 1
fi
- name: Build Puck
run: |
yarn build --scope @measured/puck --no-deps
- name: Build recipe/next
run: |
yarn build --scope next-recipe --no-deps
- name: Check for build failures
run: |
if [ $? -ne 0 ]; then
echo "Build failed. Please fix the issues."
exit 1
fi

0 comments on commit f57eb86

Please sign in to comment.