Skip to content

feat(clerk): Add machine auth support (#1664) #936

feat(clerk): Add machine auth support (#1664)

feat(clerk): Add machine auth support (#1664) #936

Workflow file for this run

name: autofix.ci
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
autofix:
name: autofix
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: actions/cache@v5
with:
path: |
.turbo
packages/*/.cache
key: ${{ runner.os }}-turbo-autofix-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-autofix-
${{ runner.os }}-turbo-
- uses: actions/setup-node@v6
with:
node-version-file: .tool-versions
- run: yarn install
- run: yarn lint:fix --cache-strategy content --pass-on-unpruned-suppressions
- run: yarn format:fix
- name: Apply fixes
uses: autofix-ci/action@v1
with:
commit-message: 'ci: apply automated fixes'