Skip to content

Commit

Permalink
Migrate CI from Travis to GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
webketje committed Oct 6, 2022
1 parent 72311e9 commit 73dbbf0
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 16 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['master']

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
node: [8,10,12,14,16]
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'

- run: npm install
- run: npm test
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 73dbbf0

Please sign in to comment.