This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +33
-54
lines changed Expand file tree Collapse file tree 4 files changed +33
-54
lines changed Original file line number Diff line number Diff line change 1+ name : Node CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+ strategy :
8+ fail-fast : false
9+ matrix :
10+ node-version : [8.x, 10.x, 12.x]
11+ platform :
12+ - { os: windows-latest, hunspell: true }
13+ - { os: windows-latest }
14+ - { os: macos-latest, hunspell: true }
15+ - { os: macos-latest }
16+ - { os: ubuntu-latest }
17+
18+ runs-on : ${{ matrix.platform.os }}
19+
20+ steps :
21+ - uses : actions/checkout@v1
22+ - name : Use Node.js ${{ matrix.node-version }}
23+ uses : actions/setup-node@v1
24+ with :
25+ node-version : ${{ matrix.node-version }}
26+ - name : npm install, build, and test
27+ run : |
28+ npm install
29+ npm test
30+ env :
31+ SPELLCHECKER_PREFER_HUNSPELL : ${{ matrix.platform.hunspell }}
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -53,5 +53,6 @@ void CheckSpellingWorker::HandleOKCallback() {
5353 }
5454
5555 Local<Value> argv[] = { Nan::Null (), result };
56- callback->Call (2 , argv);
56+ Nan::AsyncResource resource (" CheckSpellingWorker::HandleOKCallback" );
57+ callback->Call (2 , argv, &resource);
5758}
You can’t perform that action at this time.
0 commit comments