Skip to content

Commit 1efdc53

Browse files
author
Christopher Dierkens
committed
remove explicit codecov command and sperate dependency install into step
1 parent cb71e31 commit 1efdc53

1 file changed

Lines changed: 4 additions & 21 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,28 +33,11 @@ jobs:
3333
uses: actions/setup-node@v2
3434
with:
3535
node-version: ${{ matrix.node_version }}
36+
- name: Install Dependencies
37+
run: yarn install --frozen-lockfile
3638
- name: Test
3739
if: ${{ matrix.os != 'windows-latest' }}
38-
run: |
39-
yarn install --frozen-lockfile
40-
yarn test
40+
run: yarn test
4141
- name: Test IE
4242
if: ${{ matrix.os == 'windows-latest' }}
43-
run: |
44-
yarn install --frozen-lockfile
45-
yarn test-ie
46-
47-
codecov:
48-
runs-on: ubuntu-latest
49-
steps:
50-
- name: Checkout
51-
uses: actions/checkout@v2
52-
- name: Setup node
53-
uses: actions/setup-node@v2
54-
with:
55-
node-version: 14
56-
- name: Test
57-
run: |
58-
yarn install --frozen-lockfile
59-
yarn test
60-
yarn codecov
43+
run: yarn test-ie

0 commit comments

Comments
 (0)