From 33149dea85545f5018fe89788d7345b109223b16 Mon Sep 17 00:00:00 2001 From: Artem Vasilev Date: Wed, 22 Jun 2022 18:54:56 +0300 Subject: [PATCH] [FIX] - COVERALLS TOKEN --- .github/workflows/test.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 64aa021..ce31693 100755 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,9 @@ jobs: matrix: node-version: [ lts/*, latest ] + env: + repo_token: ${{ secrets.COVERALLS_REPO_TOKEN }} + steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -32,11 +35,6 @@ jobs: npm run build --if-present npm test - - name: Coveralls - uses: coverallsapp/github-action@master - with: - github-token: ${{ secrets.COVERALLS_REPO_TOKEN }} - lint: runs-on: ubuntu-20.04