Fix shopify template #68
This file contains hidden or 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: Validate Templates | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'typescript-examples/**' | |
| - 'python-examples/**' | |
| - 'README.md' | |
| - '.github/scripts/validate-templates.sh' | |
| - '.github/workflows/validate-templates.yml' | |
| jobs: | |
| validate: | |
| name: Validate Template Structure | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run template validation | |
| run: bash .github/scripts/validate-templates.sh |