Update level-8.mdx #1
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
# See: https://autofix.ci/ | |
name: autofix.ci # This cannot be renamed or else the action will fail. | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/setup | |
- run: npx prettier --write . | |
- uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c # "@v1" does not work. | |
with: | |
commit-message: "chore: format with Prettier" |