diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..11997cf --- /dev/null +++ b/.github/workflows/main.yml @@ -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 }}