Bump vite from 5.4.11 to 5.4.14 in /mock-app in the security-fixes group #60
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: Playwright Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install test dependencies | |
| run: npm ci | |
| - name: Install front-end dependencies | |
| run: npm ci | |
| working-directory: ./mock-app | |
| - name: Install Playwright Browsers | |
| run: npm run install-browsers | |
| - name: Run Playwright tests | |
| run: npm run test | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 |