From 23ad32bcc693fc4e587860ceedb60dfe3d6dcc44 Mon Sep 17 00:00:00 2001 From: Chiedo John <2156688+chiedo@users.noreply.github.com> Date: Mon, 19 Oct 2020 16:04:57 -0400 Subject: [PATCH] Remove Lint test for Windows. It always fails (#16118) Co-authored-by: Chiedo --- .github/workflows/test-windows.yml | 33 ------------------------------ 1 file changed, 33 deletions(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index cb030f82d3..e228aa4533 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -11,39 +11,6 @@ env: CI: true jobs: - lint: - runs-on: windows-latest - steps: - - name: Check out repo - uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 - - - name: Setup node - uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d - with: - node-version: 14.x - - - name: Get npm cache directory - id: npm-cache - run: | - echo "::set-output name=dir::$(npm config get cache)" - - - name: Cache node modules - uses: actions/cache@d1255ad9362389eac595a9ae406b8e8cb3331f16 - with: - path: ${{ steps.npm-cache.outputs.dir }} - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Install dependencies - run: npm ci - - - name: Run linter - run: npx standard - - - name: Check dependencies - run: npm run check-deps - test: runs-on: windows-latest strategy: