Skip to content

Commit

Permalink
chore: remove coveralls on pull_request
Browse files Browse the repository at this point in the history
  • Loading branch information
2fd committed Dec 7, 2020
1 parent 2ddb37c commit eeacdfa
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [6.x, 8.x, 10.x]
node-version: [6.x, 8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@v1
Expand All @@ -34,19 +34,15 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: node.js 12
- name: node.js 14
uses: actions/setup-node@v1
with:
node-version: 12
node-version: 14
- name: installing
run: npm ci
- name: build
run: npm run compile
- name: testing
run: npm test -- --coverage
run: npm test
env:
CI: true
- name: coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}

0 comments on commit eeacdfa

Please sign in to comment.