Skip to content

Unbump version back to 0.0.3 (0.1.0 was tagged prematurely) #99

Unbump version back to 0.0.3 (0.1.0 was tagged prematurely)

Unbump version back to 0.0.3 (0.1.0 was tagged prematurely) #99

Workflow file for this run

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()