Skip to content

Commit

Permalink
Add GitHub Actions for Node CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Oct 7, 2019
1 parent 7ce932a commit 67f71c6
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,40 @@
name: Node CI

on: [push]

jobs:
build:
name: Test with 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

0 comments on commit 67f71c6

Please sign in to comment.