Skip to content

Commit

Permalink
ci: run tests only on Node 12.x
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgrieger committed May 5, 2020
1 parent 3fd0475 commit 36f5d8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/master-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 12.x
- run: yarn install
- run: yarn lint
- run: yarn test --coverage
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/pull-request-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,11 @@ on: pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 12.x
- run: yarn install
- run: yarn lint
- run: yarn test

0 comments on commit 36f5d8c

Please sign in to comment.