From 1efdc53138387b4bb3c86bdec9b544d5daffe809 Mon Sep 17 00:00:00 2001 From: Christopher Dierkens Date: Mon, 17 May 2021 18:40:12 -0400 Subject: [PATCH] remove explicit codecov command and sperate dependency install into step --- .github/workflows/main.yml | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2955fd6..f87ebf3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,28 +33,11 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node_version }} + - name: Install Dependencies + run: yarn install --frozen-lockfile - name: Test if: ${{ matrix.os != 'windows-latest' }} - run: | - yarn install --frozen-lockfile - yarn test + run: yarn test - name: Test IE if: ${{ matrix.os == 'windows-latest' }} - run: | - yarn install --frozen-lockfile - yarn test-ie - - codecov: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: 14 - - name: Test - run: | - yarn install --frozen-lockfile - yarn test - yarn codecov + run: yarn test-ie