fix: coerce parsed arg values to match declared types #886
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: autofix.ci # needed to securely identify the workflow | |
| on: | |
| pull_request: | |
| push: | |
| branches: ["main"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: npm i -fg corepack && corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - run: pnpm install | |
| - name: Fix lint issues | |
| run: pnpm run fmt | |
| - uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8 | |
| with: | |
| commit-message: "chore: apply automated updates" |