Skip to content

Commit

Permalink
s/travis/GitHub Actions/
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Feb 5, 2021
1 parent 5844b55 commit ab03583
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 19 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on: [push, pull_request]

jobs:
build:
strategy:
matrix:
node-version: [10.0.x, 10.x, 12.0.x, 12.x, 14.0.x, 14.x, 15.x]
os: [ubuntu-latest, macOS-latest, windows-latest]
fail-fast: false

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

steps:
- name: Checkout Repository
uses: actions/checkout@v1.1.0

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

- name: Install dependencies
run: npm install

# Run for all environments
- name: Run Tap Tests
run: npm test
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit ab03583

Please sign in to comment.