Skip to content

build(deps): Bump actions/checkout from 5.0.0 to 6.0.0 in the actions group #70

build(deps): Bump actions/checkout from 5.0.0 to 6.0.0 in the actions group

build(deps): Bump actions/checkout from 5.0.0 to 6.0.0 in the actions group #70

Workflow file for this run

name: autofix.ci # For security reasons, the workflow in which the autofix.ci action is used must be named "autofix.ci".
on:
pull_request:
types:
- opened
- reopened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Setup pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- name: Setup Node.js LTS
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: lts/*
cache: pnpm
- name: Install Dependencies
run: pnpm install --prefer-frozen-lockfile
- name: Format Codes
run: pnpm format
- name: Apply autofix.ci
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 # v1.3.2
with:
fail-fast: false