Skip to content

chore(deps): update actions/setup-node action to v7 #5

chore(deps): update actions/setup-node action to v7

chore(deps): update actions/setup-node action to v7 #5

Workflow file for this run

name: autofix.ci # needed to securely identify the workflow
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
autofix:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: ⎔ Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6
- name: ⎔ Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: 24
cache: pnpm
- name: 📥 Install dependencies
run: pnpm install --ignore-scripts --frozen-lockfile
# Applies oxlint --fix. Unfixable lint errors are CI's job to report
# (see the lint step in test.yml); don't let them block uploading the
# fixes that did apply.
- name: 🧹 Apply lint fixes
run: pnpm run lint || true
- uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1.3.4