Skip to content

Bump vite from 5.3.4 to 5.4.6 #21

Bump vite from 5.3.4 to 5.4.6

Bump vite from 5.3.4 to 5.4.6 #21

Workflow file for this run

name: Linting client code
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
run: npm run lint