Skip to content

chore(deps-dev): bump vite from 6.3.5 to 7.0.6 #810

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

chore(deps-dev): bump vite from 6.3.5 to 7.0.6 #810

Workflow file for this run

name: ci
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 20.x
- uses: actions/cache@v3
id: yarn-cache
with:
path: |
~/cache
!~/cache/exclude
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install
- name: Linting
run: yarn lint
- name: Test
run: yarn test:ci
- name: Build
run: yarn build