Bump eslint-plugin-vue from 10.9.0 to 10.9.1 #2292
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: JS - TypeCheck | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| - staging | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| - staging | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - name: Install Node dependencies | |
| run: npm ci | |
| - name: Build Vue type-check (Typescript) | |
| run: npm run type-check |