From 222512a18a37f67aa09c2c844addf674712ca1f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E5=92=B2=E6=99=BA=E5=AD=90=20Kevin=20Deng?= Date: Sun, 3 Dec 2023 01:41:08 +0800 Subject: [PATCH] ci: remove autofix --- .github/workflows/autofix.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/autofix.yml diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml deleted file mode 100644 index 5e7bb63c2..000000000 --- a/.github/workflows/autofix.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: autofix.ci - -on: - pull_request: -permissions: - contents: read - -jobs: - autofix: - runs-on: ubuntu-latest - env: - PUPPETEER_SKIP_DOWNLOAD: 'true' - steps: - - uses: actions/checkout@v4 - - - name: Install pnpm - uses: pnpm/action-setup@v2 - - - name: Set node version to 18 - uses: actions/setup-node@v4 - with: - node-version: 18 - cache: pnpm - - - run: pnpm install - - - name: Run eslint - run: pnpm run lint --fix - - - name: Run prettier - run: pnpm run format - - - uses: autofix-ci/action@bee19d72e71787c12ca0f29de72f2833e437e4c9