-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate CI to github actions; also update tested versions to more cur…
…rent releases (#33)
- Loading branch information
1 parent
288306d
commit 94dffab
Showing
2 changed files
with
23 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Node CI | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
node-ci: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [8, 10, 12, 14, 15] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Node JS ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm install | ||
- name: Linting | ||
run: npm run lint | ||
- name: Testing | ||
run: npm run test | ||
|
This file was deleted.
Oops, something went wrong.