Skip to content

Publish next versions #1

Publish next versions

Publish next versions #1

Workflow file for this run

name: autofix.ci # for "security reasons", this has to be named autofix.ai
permissions:
contents: read
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
#env:
# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
# TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
jobs:
autofix:
name: 'Lint and auto-fix'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/setup
- run: pnpm turbo lint -- --fix
if: ${{ failure() || success() }}