This repository was archived by the owner on Dec 22, 2024. It is now read-only.
Bump @sveltejs/vite-plugin-svelte from 2.4.6 to 5.0.1 in /frontend #592
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: Development Vite workflow | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ "main" ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./frontend | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Install modules | |
| run: npm install | |
| - name: Check linting | |
| run: npm run check | |
| - name: Attempt to build codebase | |
| run: npm run build |