Add Bounty Review Store and Types #1327
Workflow file for this run
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: Prettier Check | |
on: | |
pull_request: | |
branches: | |
- "*" | |
jobs: | |
prettier: | |
name: prettier | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout code | |
- uses: actions/checkout@v2 | |
# List Node.js and npm versions to debug | |
- name: List Node.js and npm versions | |
run: | | |
node -v | |
npm -v | |
# Install dependencies | |
- name: Install modules | |
run: yarn install | |
# Check Prettier Version (optional) | |
- name: Check Prettier Version | |
run: npx prettier --version | |
# List project files to ensure .prettierrc.json is present | |
- name: List project files | |
run: ls -la | |
# Run Prettier check | |
- name: Prettier Check | |
run: CI=false yarn run prettier:check |