Skip to content

Bump braces from 3.0.2 to 3.0.3 in /client #22

Bump braces from 3.0.2 to 3.0.3 in /client

Bump braces from 3.0.2 to 3.0.3 in /client #22

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