Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.

Commit 0427ec7

Browse files
authored
Merge pull request #247 from evoactivity/patch-1
chore(ci): Remove windows from test matrix
2 parents d99d494 + e0e0a7f commit 0427ec7

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,26 @@ jobs:
1515
- uses: actions/checkout@v2
1616
- uses: actions/setup-node@v1
1717
with:
18-
node-version: 10.x
19-
20-
- run: yarn install --frozen-lockfile --non-interactive
21-
- run: yarn lint:js
18+
node-version: 12.x
19+
cache: yarn
20+
- name: install dependencies
21+
run: yarn install --frozen-lockfile --non-interactive
22+
- name: linting
23+
run: yarn lint:js
2224

2325
tests:
2426
name: 'Tests: ${{ matrix.os }}'
2527
runs-on: '${{ matrix.os }}-latest'
2628

2729
strategy:
2830
matrix:
29-
os: [ubuntu, macOS, windows]
31+
os: [ubuntu, macOS]
3032

3133
steps:
3234
- uses: actions/checkout@v2
3335
- uses: actions/setup-node@v1
3436
with:
35-
node-version: 10.x
37+
node-version: 12.x
3638

3739
- run: yarn install --frozen-lockfile --non-interactive
3840
- run: yarn test

0 commit comments

Comments
 (0)