Skip to content

Commit

Permalink
Switch from TravisCI to GitHub Workflows (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanZim committed Nov 4, 2021
1 parent e71751a commit 6b01dc8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 9 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
@@ -0,0 +1,21 @@
name: Node.js CI

on:
push:
branches: master
pull_request:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
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 6b01dc8

Please sign in to comment.