chore(deps-dev): bump vite from 6.3.5 to 7.1.12 #562
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: Next.js CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "packages/nextjs/**" | |
| - ".github/workflows/**" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - "packages/nextjs/**" | |
| - ".github/workflows/**" | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - name: π¦ Checkout code | |
| uses: actions/checkout@v3 | |
| - name: π§ Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: yarn | |
| - name: π¦ Install dependencies | |
| run: yarn install --immutable | |
| working-directory: ./packages/nextjs | |
| - name: π§ͺ Run Vitest | |
| run: yarn test | |
| working-directory: ./packages/nextjs | |
| - name: π Run ESLint | |
| run: yarn lint | |
| working-directory: ./packages/nextjs | |
| - name: π¨ Format Check | |
| run: yarn format:check | |
| working-directory: ./packages/nextjs | |
| - name: π‘ Type Check | |
| run: yarn check-types | |
| working-directory: ./packages/nextjs | |
| - name: ποΈ Build App | |
| run: yarn build | |
| working-directory: ./packages/nextjs | |