From de5294150af7314799815d734d4014e7786eccd0 Mon Sep 17 00:00:00 2001 From: dagobert0001 <79561698+dagobert0001@users.noreply.github.com> Date: Wed, 24 Feb 2021 14:51:44 +0700 Subject: [PATCH] Delete node-workflow.yml --- .github/workflows/node-workflow.yml | 51 ----------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .github/workflows/node-workflow.yml diff --git a/.github/workflows/node-workflow.yml b/.github/workflows/node-workflow.yml deleted file mode 100644 index 8e014b67..00000000 --- a/.github/workflows/node-workflow.yml +++ /dev/null @@ -1,51 +0,0 @@ -name: Node workflow -on: - pull_request: - branches: - - master - - develop - - verbose - paths-ignore: - - '**.md' - - 'examples/**' - push: - branches: - - master - - develop - - verbose - paths-ignore: - - '**.md' - - 'examples/**' -jobs: - run: - name: Run - runs-on: ${{ matrix.operating-system }} - strategy: - fail-fast: false - matrix: - operating-system: [ubuntu-latest, windows-latest, macos-latest] - steps: - - name: Checkout - uses: actions/checkout@v2 - - - name: Setup Node.js 14.x - uses: actions/setup-node@v1 - with: - node-version: 14.x - - - name: Install dependencies - run: npm install - - - name: Prettier Format Check - run: npm run format-check - - - name: ESLint Check - run: npm run lint - - - name: Run tests - run: npm test - - - name: Send Coverage - continue-on-error: true - timeout-minutes: 1 - run: curl -s https://codecov.io/bash | bash -s -- -t ${{secrets.CODECOV_TOKEN}} -f coverage/clover.xml -n github-actions-codecov-${{ matrix.operating-system }}