From ecff6cd680ae434bf42f6b3936587c4a8f8d73d7 Mon Sep 17 00:00:00 2001 From: Chi-Hsuan Huang Date: Mon, 28 Mar 2022 15:30:36 +0800 Subject: [PATCH] Remove lint-test-js.yml --- .../.github/workflows/lint-test-js.yml | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 plugins/woocommerce-admin/.github/workflows/lint-test-js.yml diff --git a/plugins/woocommerce-admin/.github/workflows/lint-test-js.yml b/plugins/woocommerce-admin/.github/workflows/lint-test-js.yml deleted file mode 100644 index 8e1690d9b6d..00000000000 --- a/plugins/woocommerce-admin/.github/workflows/lint-test-js.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Lint and test JS -on: [pull_request] - -jobs: - test-lint-js: - runs-on: ubuntu-latest - steps: - - name: Cancel Previous Runs - uses: styfle/cancel-workflow-action@0.7.0 - with: - access_token: ${{ github.token }} - - name: Check out repository code - uses: actions/checkout@v2 - - name: Setup Node.js - uses: actions/setup-node@v2.5.1 - with: - node-version: '14' - - name: Install PNPM and install dependencies - uses: pnpm/action-setup@v2.2.1 - with: - version: ^6.24.2 - run_install: true - - name: Lint and test the JS - run: bin/js_lint_test.sh - shell: bash