Bump the minor-and-patch group with 4 updates #543
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: Precious | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| code-formatting: | |
| runs-on: ubuntu-latest | |
| name: Code Formatting | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup mise | |
| uses: jdx/mise-action@7e36c90d9ab29c415a2384db3006f3ec8a8cc654 # v4.2.4 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| # Always lint every file, even on pull requests. Linting only the files | |
| # changed in a PR misses reformats caused by the PR itself, such as a | |
| # dependency bump that changes a formatter's version and thus reformats | |
| # files outside the diff. The repo is small, so linting everything is cheap. | |
| - name: Lint files | |
| run: precious lint --all |