Skip to content

Commit

Permalink
Create ci-plugin.yml (#153)
Browse files Browse the repository at this point in the history
* Create ci-plugin.yml

* Remove .travis.yml
  • Loading branch information
Nargonath committed Nov 15, 2020
1 parent 28b4caa commit f932e40
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci-plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ci

on:
push:
branches:
- master
pull_request:

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu, windows, macos]
node: ['*', '14', '12']
hapi: ['20', '19']

runs-on: ${{ matrix.os }}-latest
name: ${{ matrix.os }} node@${{ matrix.node }} hapi@${{ matrix.hapi }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: install
run: npm install
- name: install hapi
run: npm install @hapi/hapi@${{ matrix.hapi }}
- name: test
run: npm test
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

0 comments on commit f932e40

Please sign in to comment.