From df9a7dfe3b83c8c3955af140125bae0d03ff3ae0 Mon Sep 17 00:00:00 2001 From: Nick K Date: Mon, 30 Oct 2023 16:42:47 +0300 Subject: [PATCH] Use latest Node.js LTS in workflows and coverage report --- .github/workflows/ci.yml | 2 +- .github/workflows/eslint.yml | 2 +- .github/workflows/typescript.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7aeed70..9ea7d54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: - name: Upload codecov report uses: codecov/codecov-action@v3 - if: matrix.node == '18.x' && matrix.os == 'ubuntu-latest' + if: matrix.node == '20.x' && matrix.os == 'ubuntu-latest' with: file: ./coverage/coverage-final.json flags: unittests diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 33db067..84054af 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -29,7 +29,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Setup pnpm id: pnpm-install diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 67e7165..d3e0e01 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -27,7 +27,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Setup pnpm uses: pnpm/action-setup@v2