Skip to content

chore(deps): bump vite from 6.0.7 to 6.0.11 #885

chore(deps): bump vite from 6.0.7 to 6.0.11

chore(deps): bump vite from 6.0.7 to 6.0.11 #885

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
name: Check for build and type issues
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Cache Node modules
uses: actions/cache@v3
with:
path: ~/.npm # Cache the npm cache directory
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm ci
- name: Run check
run: npm run check && npm run lint:check && npm run format:check
# ensure build works
- name: Run build
run: npm run build