Skip to content

presets(vercel): integrate with scheduled tasks #6722

presets(vercel): integrate with scheduled tasks

presets(vercel): integrate with scheduled tasks #6722

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: 10
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 format
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8
with:
commit-message: "chore: apply automated updates"