Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

GEN: commit ABI artifacts #435

GEN: commit ABI artifacts

GEN: commit ABI artifacts #435

Workflow file for this run

# .github/workflows/prettier.yml
name: Prettier
on:
push:
branches:
- main
- dev
pull_request:
jobs:
prettier:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Set up node.js
uses: actions/setup-node@v4
with:
node-version: '21'
- name: Run formatter
run: make fmt
- name: Check diff clean
run: |
git restore package-lock.json
git status
git diff --name-only
git --no-pager diff --quiet
# - name: Commit changes
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# commit_message: Apply Prettier formatting
# branch: ${{ github.head_ref }}