Skip to content

Commit

Permalink
ci: switch from Travis to GitHub Actions (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
watson committed May 30, 2022
1 parent 1e0f516 commit 6bdf008
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,19 @@
name: CI
on:
push:
branches: ['master']
pull_request:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 17, 16, 14]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit 6bdf008

Please sign in to comment.