Skip to content

Bump vite from 5.0.12 to 5.0.13 in /client #12

Bump vite from 5.0.12 to 5.0.13 in /client

Bump vite from 5.0.12 to 5.0.13 in /client #12

Workflow file for this run

name: Prettier Check
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
working-directory: client
run: npm ci
- name: Test prettier
working-directory: client
run: npx prettier . --check