Skip to content

Commit

Permalink
Move away from travis
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara committed Sep 21, 2021
1 parent 22fa473 commit dace42b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 11 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
types: [opened, reopened, synchronize]
jobs:
test:
name: Tests
strategy:
fail-fast: true
matrix:
node: [4, 6, 8, 10, 12, 14]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Test
run: npm test
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit dace42b

Please sign in to comment.