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 3b38a3c commit abc9c8d
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/pull-request-check.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: Pull Request Check

on:
pull_request:
branches:
- develop

jobs:
test:
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
Expand All @@ -13,19 +11,18 @@ jobs:
matrix:
node_version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- name: Clone Repo
- name: Clone repository
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
version: ${{ matrix.node_version }}
- name: Install
run: npm ci
- name: Lint
- name: Run linter
run: npm run eslint
- name: Tests
- name: Run tests
run: npm test
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

0 comments on commit abc9c8d

Please sign in to comment.