Skip to content

Commit

Permalink
Merge pull request #187 from strongloop/gh-action
Browse files Browse the repository at this point in the history
ci: add Github Actions
  • Loading branch information
agnes512 committed Feb 10, 2021
2 parents 94280aa + dbe8912 commit 2fb7979
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Continuous Integration

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10, 12, 14]
steps:
- name: Git checkout
uses: actions/checkout@v2

- 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 2fb7979

Please sign in to comment.