This repository was archived by the owner on Mar 23, 2026. It is now read-only.
chore(deps): update dependency eslint to v9.39.1 #154
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm & dependencies | |
| with: | |
| run_install: true | |
| - name: Svelte check | |
| run: pnpm check | |
| - name: Build production bundle | |
| run: pnpm build |