Skip to content

Commit

Permalink
switch to use github actions (#47)
Browse files Browse the repository at this point in the history
* 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
lloydbenson authored Nov 12, 2020
1 parent 3397a6a commit b0c4aea
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
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
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit b0c4aea

Please sign in to comment.