Skip to content

Commit

Permalink
💚 switch to GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dkundel committed Jul 30, 2020
1 parent d8bd422 commit dff71d1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Node CI

on: [push]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node-version: [10, 12, 14]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run build --if-present
npm run test
env:
CI: true
NODE_ENV: test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit dff71d1

Please sign in to comment.