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

Fix for v8 w/ node 12 + Switch to github actions. + Fix deprecated callback + Provide default value for spellchecker_use_hunspell #130

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
38 changes: 38 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Node CI

on: [push]

jobs:
build:
strategy:
fail-fast: false
matrix:
node-version: [8.x, 10.x, 12.x]
platform:
- { os: windows-latest, force-hunspell: true }
- { os: windows-latest }
- { os: macos-latest, force-hunspell: true }
- { os: macos-latest }
- { os: ubuntu-latest, use-clang: true }

runs-on: ${{ matrix.platform.os }}
env:
SPELLCHECKER_PREFER_HUNSPELL: ${{ matrix.platform.hunspell }}

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test (clang)
if: matrix.platform.use-clang == true
run: |
export CC="$(which clang)"
export CPP="$(which clang++)"
npm install
npm test
- name: npm install, build, and test
run: |
npm install
npm test
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

18 changes: 0 additions & 18 deletions appveyor.yml

This file was deleted.

15 changes: 6 additions & 9 deletions binding.gyp
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
'variables': {
'conditions': [
['OS=="mac"', {
'spellchecker_use_hunspell%': 'true',
}],
['OS=="linux"', {
'spellchecker_use_hunspell': 'true',
}],
['OS=="win"', {
'spellchecker_use_hunspell': 'true',
}],
['OS=="mac"', { 'spellchecker_use_hunspell%': 'true' },
'OS=="linux"', { 'spellchecker_use_hunspell': 'true'},
'OS=="win"', { 'spellchecker_use_hunspell': 'true' },
'OS=="freebsd"', { 'spellchecker_use_hunspell': 'true' },
{ 'spellchecker_use_hunspell': 'false' }
],
],
},
'target_defaults': {
Expand Down
Loading