chore(deps-dev): bump minimatch from 10.0.3 to 10.2.3 #148
Workflow file for this run
This file contains hidden or 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: Lint | |
| on: | |
| push: | |
| branches: ["**"] | |
| jobs: | |
| lint-and-fix: | |
| name: Lint and Fix | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Markdown lint and fix | |
| uses: DavidAnson/markdownlint-cli2-action@v20 | |
| with: | |
| globs: | | |
| "**/*.md" | |
| fix: true | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4.1.0 | |
| with: | |
| version: latest | |
| - name: Set node LTS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: latest | |
| cache: pnpm | |
| - name: Install | |
| run: pnpm install | |
| - name: Code Lint and Fix | |
| run: pnpm lint:fix | |
| - name: Commit and Push changes | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: "chore: format and lint fix [skip ci]" |