| 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@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- - name: Install pnpm
- uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
- - name: Install Node.js
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- 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@7a166d7532b277f34e16238930461bf77f9d7ed8
|