Skip to content

Bump vite from 4.1.4 to 4.5.3 in /frontend #71

Bump vite from 4.1.4 to 4.5.3 in /frontend

Bump vite from 4.1.4 to 4.5.3 in /frontend #71

Workflow file for this run

name: Run eslint
on:
push:
paths:
- frontend/**
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
cache: "npm"
cache-dependency-path: "frontend/package-lock.json"
- name: Install dependencies
working-directory: "frontend"
run: npm ci
- name: Lint
working-directory: "frontend"
run: npm run lint