Skip to content

chore(deps-dev): bump vite from 6.3.5 to 7.1.12 #562

chore(deps-dev): bump vite from 6.3.5 to 7.1.12

chore(deps-dev): bump vite from 6.3.5 to 7.1.12 #562

Workflow file for this run

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