diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0242a0d..e3a2578 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -41,18 +41,18 @@ jobs: with: node-version: '${{ steps.nvm.outputs.NVMRC }}' - - name: Get npm cache directory - id: npm-cache - run: | - echo "::set-output name=dir::$(npm config get cache)" - - - name: Cache npm - uses: actions/cache@v1 - with: - path: ${{ steps.npm-cache.outputs.dir }} - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- +# - name: Get npm cache directory +# id: npm-cache +# run: | +# echo "::set-output name=dir::$(npm config get cache)" +# +# - name: Cache npm +# uses: actions/cache@v1 +# with: +# path: ${{ steps.npm-cache.outputs.dir }} +# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} +# restore-keys: | +# ${{ runner.os }}-node- - run: npm ci @@ -76,14 +76,18 @@ jobs: name: coverage path: coverage - - name: Upload test coverage to Coveralls - uses: coverallsapp/github-action@v1.0.1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel: true - - - name: Coveralls Finished - uses: coverallsapp/github-action@v1.0.1 + - uses: codecov/codecov-action@v1 with: - github-token: ${{ secrets.GITHUB_TOKEN }} - parallel-finished: true + token: ${{ secrets.CODECOV_TOKEN }} + +# - name: Upload test coverage to Coveralls +# uses: coverallsapp/github-action@v1.0.1 +# with: +# github-token: ${{ secrets.GITHUB_TOKEN }} +# parallel: true +# +# - name: Coveralls Finished +# uses: coverallsapp/github-action@v1.0.1 +# with: +# github-token: ${{ secrets.GITHUB_TOKEN }} +# parallel-finished: true