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

Commit

Permalink
Merge pull request #4 from goddessfreya/Add-Github-actions
Browse files Browse the repository at this point in the history
Add Github actions
  • Loading branch information
goddessfreya authored Dec 20, 2019
2 parents 2c0d135 + 5cbdece commit 0c83612
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 53 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Node CI

on: [push]

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

runs-on: ${{ matrix.platform.os }}

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
run: |
npm install
npm test
env:
SPELLCHECKER_PREFER_HUNSPELL: ${{ matrix.platform.hunspell }}
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

18 changes: 0 additions & 18 deletions appveyor.yml

This file was deleted.

0 comments on commit 0c83612

Please sign in to comment.