From 0eb2d5f125a60d18502fbf8d1d7e428a3a4c3073 Mon Sep 17 00:00:00 2001 From: bergi Date: Sat, 7 Dec 2024 10:40:57 +0100 Subject: [PATCH] chore: switched to coveralls --- .github/workflows/test.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index dccf27d..87f62c6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,6 +11,7 @@ jobs: - '18' - '20' - '22' + - '23' steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 @@ -18,4 +19,16 @@ jobs: node-version: ${{ matrix.node }} - run: npm install - run: npm test - - uses: codecov/codecov-action@v5 + - uses: coverallsapp/github-action@v2 + with: + flag-name: run Node v${{ matrix.node }} + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel: true + finally: + needs: test + runs-on: ubuntu-24.04 + steps: + - uses: coverallsapp/github-action@v2 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + parallel-finished: true