diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml new file mode 100644 index 0000000..1bf387c --- /dev/null +++ b/.github/workflows/autofix.yml @@ -0,0 +1,24 @@ +name: autofix.ci + +on: + push: + branches: [main] + pull_request: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.event.number || github.ref }} + cancel-in-progress: true + +permissions: + contents: read + +jobs: + autofix: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - uses: ./.github/actions/pnpm-setup-node + - run: pnpm install + - run: pnpm prettier + - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 diff --git a/packages/next/src/compat.tsx b/packages/next/src/compat.tsx index efa2178..7d401a7 100644 --- a/packages/next/src/compat.tsx +++ b/packages/next/src/compat.tsx @@ -76,7 +76,7 @@ export function useFunnel { - + );