From 6c2c8271657d37a99f7468d09e127cb437d29581 Mon Sep 17 00:00:00 2001 From: wtto00 Date: Fri, 10 May 2024 18:43:59 +0800 Subject: [PATCH] remove lint ci --- .github/workflows/lint.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index 5907f47..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: 'Lint' -on: - pull_request: - branches: - - main - -jobs: - Lint: - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v3 - - - name: Install pnpm - uses: pnpm/action-setup@v2 - with: - version: 8 - run_install: false - - - name: Install Node - uses: actions/setup-node@v3 - with: - node-version: 20 - cache: 'pnpm' - - - name: Install Dependencies - run: pnpm install --no-frozen-lockfile - - - name: Run Lint - run: npx eslint . && npm run tscheck