From b35214879fc834a6074abe6f67e0f3532a9b68d0 Mon Sep 17 00:00:00 2001 From: bergi Date: Sat, 7 Dec 2024 12:13:52 +0100 Subject: [PATCH] chore: switched to coveralls --- .github/workflows/test.yaml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3da4046..87f62c6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,13 +4,14 @@ on: - push jobs: test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 strategy: matrix: node: - '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