Bump prettier from 3.3.3 to 3.4.1 #686
Workflow file for this run
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: Update markdown snippets | |
on: | |
push: | |
jobs: | |
update-markdown-snippets: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run MarkdownSnippets | |
run: | | |
dotnet tool install --global MarkdownSnippets.Tool | |
mdsnippets ${GITHUB_WORKSPACE} | |
shell: bash | |
- name: Prettier | |
run: | | |
npm install -g prettier | |
prettier --write . | |
shell: bash | |
- name: Push changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git commit -m ". d updated markdown snippets & formatting" -a || echo "nothing to commit" | |
remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git" | |
branch="${GITHUB_REF:11}" | |
git push "${remote}" ${branch} || echo "nothing to push" | |
shell: bash |