Skip to content

chore(deps): bump vite from 5.4.11 to 5.4.14 in the npm_and_yarn group across 1 directory #64

chore(deps): bump vite from 5.4.11 to 5.4.14 in the npm_and_yarn group across 1 directory

chore(deps): bump vite from 5.4.11 to 5.4.14 in the npm_and_yarn group across 1 directory #64

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
container: node:22
steps:
- uses: actions/checkout@main
- name: Setup cache
uses: actions/cache@v4
with:
path: |
~/.npm
node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci
- name: Run TypeScript check
run: npm run compile
- name: Run ESLint
run: npm run lint
- name: Check formatting
run: npm run format:check