Skip to content

Commit

Permalink
Update pull-request-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles authored Aug 12, 2019
1 parent 627323c commit 3ca9f4d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/pull-request-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,22 @@ on:

jobs:
test:
name: node-${{ matrix.node_version }}@${{ matrix.os }}
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
- name: Cloning repo
uses: actions/checkout@v1
- name: Using Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
version: ${{ matrix.node_version }}
- run: |
- name: npm ci, lint, and test
run: |
npm ci
npm run eslint
npm test
Expand Down

0 comments on commit 3ca9f4d

Please sign in to comment.