add instructions in readme for live debugging of user chrome #42
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: Format Markdown Files | |
on: | |
push: | |
paths: | |
- "**.md" | |
workflow_dispatch: | |
jobs: | |
format_markdown: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "14" | |
- name: Install dependencies | |
run: npm install | |
- name: Format Markdown files | |
run: npx prettier --write "**/*.md" | |
- name: Push changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: format markdown files" |