From 8a8c5c0bddb34a3fad8d86c21cf9bc4bab409693 Mon Sep 17 00:00:00 2001 From: Guido Flohr Date: Wed, 8 Jan 2025 19:47:30 +0200 Subject: [PATCH] split actions --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1d13470..986fb1d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,9 +37,12 @@ jobs: - name: Run tests run: bun run test + - name: Test with coverage + if: ${{ matrix.coverage }} + run: bun run test:cov + - name: Upload coverage uses: coverallsapp/github-action@v2 if: ${{ matrix.coverage }} - run: bun run test:cov with: github-token: ${{ secrets.GITHUB_TOKEN }}