update: bump up vite-tsconfig-paths to 6.0.4 and remove workarounds #3
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: PR Checks | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check dev server starts | |
| run: | | |
| timeout 30s npm run dev & | |
| sleep 10 | |
| kill %1 || true | |
| - name: Run tests | |
| run: npm run test | |
| - name: Build and test output | |
| run: | | |
| npm run build | |
| node dist/index.js |