Skip to content

Commit

Permalink
Replace Travis CI with Github Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjeffburke authored and papandreou committed Nov 19, 2020
1 parent 3f01198 commit af24228
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 42 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Tests
'on':
push:
pull_request:

jobs:
test:
runs-on: ubuntu-18.04
name: Node ${{ matrix.node }}
strategy:
matrix:
node:
- '6'
- '8'
- '10'
- '12'
- '14'
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test

test-targets:
runs-on: ubuntu-18.04
name: ${{ matrix.targets.name }}
strategy:
matrix:
targets:
- {target: 'test-jest', name: 'Jest'}
- {target: 'test-jasmine', name: 'Jasmine'}
- {target: 'test-coverage', name: 'Coverage'}
- {target: 'test-plugins', name: 'Plugins'}
- {target: 'test-browserstack-ie11', name: 'Browser - IE11'}
- {target: 'test-deno', name: 'Deno'}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '12'
- run: npm install
- run: npm run ${{ matrix.targets.target }}

42 changes: 0 additions & 42 deletions .travis.yml

This file was deleted.

0 comments on commit af24228

Please sign in to comment.