From: 三咲智子 Kevin Deng Date: Sat, 2 Dec 2023 17:41:08 +0000 (+0800) Subject: ci: remove autofix X-Git-Tag: v3.6.0-alpha.1~16^2~762 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=222512a18a37f67aa09c2c844addf674712ca1f6;p=thirdparty%2Fvuejs%2Fcore.git ci: remove autofix --- diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml deleted file mode 100644 index 5e7bb63c22..0000000000 --- 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