Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Use GH Actions instead of Travis-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Oct 18, 2019
1 parent 3588645 commit 1a1abb5
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 22 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Node CI

on:
push:
branches:
- master
tags:
- '!*'
pull_request:

jobs:
build:
name: Test Node.js ${{ matrix.node-version }} on ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [6.x, 8.x, 10.x, 12.x]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Print Node.js Version
run: node --version

- name: Install Dependencies
run: npm install
env:
CI: true

- name: Run "build" step
run: npm run build --if-present
env:
CI: true

- name: Run tests
run: npm test
env:
CI: true
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/node_modules

/yarn.lock
/package-lock.json
/?.js
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

0 comments on commit 1a1abb5

Please sign in to comment.