Skip to content

Commit

Permalink
ci: use github actions (#379)
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Jan 28, 2021
1 parent f79e59f commit 3445775
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,22 @@
name: CI

on: [push, pull_request]

jobs:
test:
name: Tests
strategy:
matrix:
node: [8.x, 10.x, 12.x, 14.x, 15.x]
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Node.js ${{matrix.node}}
uses: actions/setup-node@v2-beta
with:
node-version: ${{matrix.node}}
- name: Install dependencies
run: npm install
- name: npm test
run: npm test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 3445775

Please sign in to comment.