fix: doc git lfs requirement (#139) #576
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: format-check | |
on: [push] | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Validate Prettier config | |
run: yarn run format:check |