Skip to content

Backend support : Add API Endpoints for Queue/Job Creation and deletion of jobs #317

Backend support : Add API Endpoints for Queue/Job Creation and deletion of jobs

Backend support : Add API Endpoints for Queue/Job Creation and deletion of jobs #317

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)