Chores: update gitignores and update files.json #1
Workflow file for this run
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: Check Generated Files | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check-files-json: | |
| name: Check files.json | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Regenerate files.json | |
| working-directory: typescript-sdk/apps/dojo | |
| run: npm run generate-content-json | |
| - name: Check files.json | |
| working-directory: typescript-sdk/apps/dojo | |
| run: git diff --exit-code files.json | |