chore(deps): bump vite from 7.1.2 to 7.3.1 #63
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: NPM Package CI | |
| on: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| branches: ['**'] | |
| jobs: | |
| ci: | |
| name: Package CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint package code | |
| run: pnpm run lint | |
| - name: Build package | |
| run: pnpm run build | |
| - name: Unit tests | |
| run: pnpm run test | |
| if: github.ref != 'refs/heads/main' && github.base_ref != 'main' | |
| - name: Full test suite (Integration + E2E) | |
| run: pnpm run test:all | |
| if: github.ref == 'refs/heads/main' || github.base_ref == 'main' |