Unbump version back to 0.0.3 (0.1.0 was tagged prematurely) #99
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: corepack enable | |
| - run: pnpm install | |
| # Keep the committed hosted browser module in sync with src; CI fails on drift. | |
| - run: pnpm run build:hosted-browser-module | |
| - run: pnpm format | |
| - run: pnpm lint --fix | |
| - run: git diff | |
| - uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef | |
| if: always() |