Skip to content

Merge branch 'main' of https://github.com/ARC-Solutions/IntelliQ #2

Merge branch 'main' of https://github.com/ARC-Solutions/IntelliQ

Merge branch 'main' of https://github.com/ARC-Solutions/IntelliQ #2

Workflow file for this run

name: Code Quality checks
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npx prettier --write .
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "style: format with prettier"
branch: ${{ github.head_ref || github.ref_name }}