chore(deps): update vue dependencies #1137
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: | |
| pull_request: | |
| branches: [develop] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.x | |
| registry-url: "https://registry.npmjs.org" | |
| cache: "npm" | |
| - name: Install dependencies 📦 | |
| run: npm ci | |
| - name: Generate files | |
| run: npm run gen | |
| - name: Check for changes 🧐 | |
| run: | | |
| changes=$(git status --porcelain) | |
| # Check for changes in regenerated files | |
| if ! test -z "$changes" | |
| then | |
| echo "Generated files are not up to date. Perhaps you forgot to run `npm run gen`?" | |
| echo "$changes" | |
| exit 1 | |
| fi |