Skip to content

Commit

Permalink
use github actions for CI
Browse files Browse the repository at this point in the history
PR-URL: #272
Credit: @JasonEtco
Close: #272
Reviewed-by: @ruyadorno
  • Loading branch information
JasonEtco authored and ruyadorno committed Oct 31, 2019
1 parent 9a2d8af commit 688cd97
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Node CI

on: [push]

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

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

steps:
# Checkout the npm/cli repo
- uses: actions/checkout@v1

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

# Run the installer script
- name: Install dependencies
run: node . install

# Run the tests
- name: Run Tap tests
run: node . run tap -- "test/tap/*.js" -t600 -Rclassic -c
env:
DEPLOY_VERSION: testing
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_OPTIONAL_TOKEN }}

# - name: Run sudo tests on Linux
# if: matrix.os == 'ubuntu-latest'
# run: sudo PATH=$PATH $(which node) . run tap -- "test/tap/*.js" --coverage --timeout 600

- name: Lint
run: npx standard

- name: Validate licenses
run: node . run licenses

0 comments on commit 688cd97

Please sign in to comment.