Skip to content

refactor: updated text on readme and textsection, and fixed NaN bug w… #28

refactor: updated text on readme and textsection, and fixed NaN bug w…

refactor: updated text on readme and textsection, and fixed NaN bug w… #28

name: Run Prettier Formatting
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run Prettier
run: npx prettier --write .
- name: Commit and push changes
uses: EndBug/add-and-commit@v4
with:
author_name: Prettier Bot
author_email: [email protected]
message: 'Committing Prettier changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}