From eeacdfaea9714ab4e875b4750a48aa436c09c0c7 Mon Sep 17 00:00:00 2001 From: Fede Date: Mon, 7 Dec 2020 14:17:55 -0300 Subject: [PATCH] chore: remove coveralls on pull_request --- .github/workflows/pull_request.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index b2a3720d..676da737 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -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 @@ -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 }}