Skip to content

Registration up

Registration up #1

Workflow file for this run

# .github/workflows/prettier.yml
name: Prettier Check
on: [pull_request]
jobs:
prettier-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install pnpm
run: |
npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run Prettier check
run: pnpm run format-check