Skip to content

Add Bounty Review Store and Types #1327

Add Bounty Review Store and Types

Add Bounty Review Store and Types #1327

Workflow file for this run

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