Skip to content

Commit

Permalink
ci: add Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Dec 4, 2019
1 parent ec02b81 commit 825f064
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Node CI

on: [push, pull_request]

jobs:
test:
runs-on: [ubuntu-latest, windows-latest, macos-latest]

strategy:
matrix:
node-version: [4.x, 6.x, 8.x, 9.x, 10.x, 11.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit 825f064

Please sign in to comment.