deps(apps): bump vite from 7.3.1 to 8.0.0 #10645
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: Lint Check | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| cypress-run: | |
| name: Test application | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout for testing | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js LTS version | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f | |
| with: | |
| node-version: lts/Krypton | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Check lint | |
| run: npm run lint |