We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb71e31 commit 1efdc53Copy full SHA for 1efdc53
1 file changed
.github/workflows/main.yml
@@ -33,28 +33,11 @@ jobs:
33
uses: actions/setup-node@v2
34
with:
35
node-version: ${{ matrix.node_version }}
36
+ - name: Install Dependencies
37
+ run: yarn install --frozen-lockfile
38
- name: Test
39
if: ${{ matrix.os != 'windows-latest' }}
- run: |
- yarn install --frozen-lockfile
40
- yarn test
+ run: yarn test
41
- name: Test IE
42
if: ${{ matrix.os == 'windows-latest' }}
43
44
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
58
59
60
- yarn codecov
+ run: yarn test-ie
0 commit comments