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

Commit f6720ea

Browse files
authored
Update nodejs.yml
1 parent 514a3f9 commit f6720ea

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/nodejs.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@ on: [push]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-latest
9-
108
strategy:
9+
fail-fast: false
1110
matrix:
1211
node-version: [8.x, 10.x, 12.x]
12+
platform:
13+
- { os: windows-latest, hunspell: true }
14+
- { os: windows-latest }
15+
- { os: ubuntu-latest }
16+
17+
runs-on: ${{ matrix.platform.os }}
1318

1419
steps:
1520
- uses: actions/checkout@v1
@@ -19,6 +24,7 @@ jobs:
1924
node-version: ${{ matrix.node-version }}
2025
- name: npm install, build, and test
2126
run: |
27+
npm install
2228
npm test
2329
env:
24-
CI: true
30+
SPELLCHECKER_PREFER_HUNSPELL: ${{ matrix.platform.hunspell }}

0 commit comments

Comments
 (0)