From edbbe7d358d6115fb1cc1c8f4e91f50f67e903d7 Mon Sep 17 00:00:00 2001 From: "Visal .In" Date: Mon, 8 Jul 2024 19:19:44 +0700 Subject: [PATCH] use node version 20 --- .github/workflows/coverags.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/coverags.yaml b/.github/workflows/coverags.yaml index 4594c5a3..c3e2506b 100644 --- a/.github/workflows/coverags.yaml +++ b/.github/workflows/coverags.yaml @@ -4,6 +4,8 @@ on: branches: - develop jobs: + with: + test-script: npm test:coverage coverage: runs-on: ubuntu-latest permissions: @@ -12,4 +14,9 @@ jobs: pull-requests: write steps: - uses: actions/checkout@v3 + + - uses: actions/setup-node@v3 + with: + node-version: 20 + - uses: ArtiomTr/jest-coverage-report-action@v2