V2 default product handling #260
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check that module was built | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check-dist: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build the dist/ directory | |
run: pnpm build | |
- name: Check for diff | |
run: | | |
if git diff --exit-code dist; then | |
echo "No changes detected in the dist/ directory." | |
else | |
echo "Detected uncommitted changes after building. Please run 'pnpm run build' and commit the changes." | |
exit 1 | |
fi |