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

Commit 0c83612

Browse files
authored
Merge pull request #4 from goddessfreya/Add-Github-actions
Add Github actions
2 parents 2c0d135 + 5cbdece commit 0c83612

File tree

3 files changed

+31
-53
lines changed

3 files changed

+31
-53
lines changed

.github/workflows/nodejs.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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 }}

.travis.yml

-35
This file was deleted.

appveyor.yml

-18
This file was deleted.

0 commit comments

Comments
 (0)