chore(deps): update dependency @sveltejs/kit to v2.20.6 [security] #5483
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: CI | |
| on: | |
| push: | |
| branches: ['main', 'renovate/**'] | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| build: | |
| name: Build and Test | |
| env: | |
| NODE_OPTIONS: '--max_old_space_size=4096' | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9.15.9 | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Sync | |
| run: pnpm sync | |
| - name: SvelteKit Sync | |
| run: pnpm sync:svelte | |
| - name: Database Migrate | |
| run: pnpm migrate:latest | |
| - name: Database Generate Types | |
| run: pnpm sync:db | |
| - name: Check | |
| run: pnpm check | |
| - name: Build | |
| run: pnpm build | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test | |
| - name: Install Playwright Browsers | |
| run: pnpm exec playwright install --with-deps chromium | |
| - name: Run Playwright tests | |
| run: pnpm test:e2e:only | |
| - uses: actions/upload-artifact@v4 | |
| if: ${{ !cancelled() }} | |
| with: | |
| name: playwright-report | |
| path: ./**/playwright-report/ | |
| retention-days: 7 |