Skip to content

Bump vite from 4.5.2 to 5.2.10 #206

Bump vite from 4.5.2 to 5.2.10

Bump vite from 4.5.2 to 5.2.10 #206

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# ESLint is a tool for identifying and reporting on patterns
# found in ECMAScript/JavaScript code.
# More details at https://github.com/eslint/eslint
# and https://eslint.org
name: ESLint
on:
push:
branches: ["main", "next-release"]
pull_request:
branches: ["main", "next-release"]
workflow_dispatch:
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
env:
GH_BUILD: true
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint