new conf design — rate limit workaround #7
Workflow file for this run
This file contains hidden or 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: Lint and check formatting | |
on: pull_request | |
jobs: | |
prettier-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: the-guild-org/shared-config/setup@main | |
name: setup env | |
with: | |
packageManager: pnpm | |
workingDirectory: ./ | |
- name: Install Dependencies | |
run: pnpm i | |
# Commented out until later PR that changes the ESLint config | |
# - name: Run ESLint | |
# run: pnpm lint --quiet | |
- name: Run Prettier Check | |
run: pnpm format:check |