Skip to content

Bump vite from 5.4.2 to 5.4.6 #9

Bump vite from 5.4.2 to 5.4.6

Bump vite from 5.4.2 to 5.4.6 #9

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, and run linting
name: Linting CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
name: Run linters and check build scripts
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
cache: 'npm'
- name: Install
run: yarn install
- name: Run ESLint
run: yarn lint
- name: Run Prettier
run: yarn prettier-check
- name: Build
run: yarn build