Skip to content

Commit

Permalink
chore: Move from Travis to GitHub actions to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mischah committed Sep 14, 2022
1 parent 82f74ea commit 074f63a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 16
- 14
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

0 comments on commit 074f63a

Please sign in to comment.