Skip to content

Formatted code with prettier #7

Formatted code with prettier

Formatted code with prettier #7

Workflow file for this run

name: Lint and Format Check
on:
pull_request:
push:
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: |
yarn
yarn prettier . --check
yarn eslint .