Skip to content

Commit

Permalink
Update dependencies (#64)
Browse files Browse the repository at this point in the history
* Update dependencies

* Switch to Github actions
  • Loading branch information
vladikoff committed Mar 25, 2021
1 parent a4dba14 commit ffeffaf
Show file tree
Hide file tree
Showing 5 changed files with 3,252 additions and 1,091 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,39 @@
name: Tests

on: [push, pull_request]

env:
FORCE_COLOR: 2

jobs:
run:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
node: [10, 12, 14]
os: [ubuntu-latest, windows-latest]

steps:
- name: Clone repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}

- name: Install npm dependencies
run: npm i

- name: Run tests
run: npm test

# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- name: Run PowerShell tests
run: "npm test # PowerShell" # Pass comment to PS for easier debugging
shell: powershell
if: startsWith(matrix.os, 'windows')
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

34 changes: 0 additions & 34 deletions appveyor.yml

This file was deleted.

0 comments on commit ffeffaf

Please sign in to comment.