chore: bump vite from 5.4.10 to 6.0.5 #376
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Formatting | |
on: [pull_request] | |
jobs: | |
eslint_and_prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: yarn install | |
- name: Check Code Format | |
run: npx prettier --check . | |
- name: Run ESLint | |
run: npx eslint . |