-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* setup github action for a module * get rid of hapi here * os is unnecessary * spaces vs / * get rid of travis in favor of github actions * just keep it with a simple name * change to ci
- Loading branch information
1 parent
3397a6a
commit b0c4aea
Showing
2 changed files
with
23 additions
and
7 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: ci | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu, windows, macos] | ||
node: ['*', '14', '12'] | ||
|
||
runs-on: ${{ matrix.os }}-latest | ||
name: ${{ matrix.os }} node@${{ matrix.node }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- name: install | ||
run: npm install | ||
- name: test | ||
run: npm test |
This file was deleted.
Oops, something went wrong.