Skip to content

format the server code #1

format the server code

format the server code #1

Workflow file for this run

name: 'Check code format'
on:
pull_request:
defaults:
run:
working-directory: ./server
jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # checkout the repo
- name: Install dependencies # install dependencies
run: yarn install --frozen-lockfile
- run: yarn format-check