Skip to content

Commit

Permalink
Merge pull request #79 from npm/nlf/refactor-tests
Browse files Browse the repository at this point in the history
refactor tests
  • Loading branch information
wraithgar committed Mar 9, 2021
2 parents de533ed + c9b2f7d commit deab507
Show file tree
Hide file tree
Showing 18 changed files with 12,758 additions and 3,616 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
node-version: ['10.1', 10.x, '12.1', 12.x, '14.1', 14.x]

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Update npm
run: npm i -g npm
- name: Install dependencies
run: npm ci
- name: Run Tap tests
run: npm test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit deab507

Please sign in to comment.