| 12345678910111213141516171819202122232425262728293031323334 |
- name: autofix.ci
- on:
- pull_request:
- permissions:
- contents: read
- jobs:
- autofix:
- runs-on: ubuntu-latest
- env:
- PUPPETEER_SKIP_DOWNLOAD: 'true'
- steps:
- - uses: actions/checkout@v5
- - name: Install pnpm
- uses: pnpm/action-setup@v4.2.0
- - name: Install Node.js
- uses: actions/setup-node@v6
- with:
- node-version-file: '.node-version'
- registry-url: 'https://registry.npmjs.org'
- cache: 'pnpm'
- - run: pnpm install
- - name: Run eslint
- run: pnpm run lint --fix
- - name: Run prettier
- run: pnpm run format
- - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
|