Skip to content

Commit

Permalink
Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kimamula committed Dec 2, 2020
1 parent 8147ad8 commit 309c3dc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

0 comments on commit 309c3dc

Please sign in to comment.