refactor: update css and add bootstrap #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |