Skip to content

refactor: env runners #6065

refactor: env runners

refactor: env runners #6065

Workflow file for this run

name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
autofix:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: "pnpm"
- run: pnpm install
- run: pnpm stub
- run: pnpm gen-presets
- name: Fix lint issues
run: npm run lint:fix
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
with:
commit-message: "chore: apply automated updates"