Skip to content

Commit

Permalink
🚀 Replace travis with GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
himynameisdave committed Feb 1, 2021
1 parent 3e78e86 commit 6008d6e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: test
on: [
push,
pull_request
]
env:
CI: true
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 15]
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
run: yarn test
4 changes: 0 additions & 4 deletions .travis.yml

This file was deleted.

0 comments on commit 6008d6e

Please sign in to comment.