Skip to content

add PodGroup dashboard support #378

add PodGroup dashboard support

add PodGroup dashboard support #378

Workflow file for this run

name: Formatting Check
on:
pull_request:
branches: [main]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run Prettier Check
run: npm run format:check || (echo "Code is not formatted! Run 'npm run format' locally." && exit 1)