From ffea4fa4e47deca873c9c99349560107eedfb0a0 Mon Sep 17 00:00:00 2001 From: Pablo Sanchez Date: Wed, 11 Oct 2023 15:08:47 +0300 Subject: [PATCH 1/2] Bump testing node versions --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f9515162..a0cc770c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 From 2c583e1a63b7a7071b4c9b79a5545e2491cb0548 Mon Sep 17 00:00:00 2001 From: Nikos Vasileiou Date: Wed, 11 Oct 2023 15:22:43 +0300 Subject: [PATCH 2/2] Use node16 for npm publish --- .github/workflows/npm-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index fd10d82b..f95c1c71 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 - run: npm install - run: npm run bootstrap - run: npm run lint @@ -27,7 +27,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: 14 + node-version: 16 registry-url: https://registry.npmjs.org/ - run: npm install - run: npm run bootstrap