Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RickyRAV committed Nov 13, 2024
2 parents 8c1bc11 + 701f13f commit dac3159
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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 }}

0 comments on commit dac3159

Please sign in to comment.