From 45fb8ebadc258f80aa6b14d622777dadca952d06 Mon Sep 17 00:00:00 2001 From: legobt <6wbvkn0j@anonaddy.me> Date: Mon, 11 Mar 2024 08:56:37 +0000 Subject: [PATCH 1/2] chore(ci): build,lint,test on node v18, v20 --- .github/workflows/build-lint-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index b4d113e..aab59fa 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} From 174930ea4109729e30f580755a7eebeef02a190f Mon Sep 17 00:00:00 2001 From: legobt <6wbvkn0j@anonaddy.me> Date: Mon, 11 Mar 2024 08:57:23 +0000 Subject: [PATCH 2/2] chore(ci): run on ubuntu-latest instead of ubuntu-20.04 --- .github/workflows/build-lint-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-lint-test.yml b/.github/workflows/build-lint-test.yml index aab59fa..13ebf78 100644 --- a/.github/workflows/build-lint-test.yml +++ b/.github/workflows/build-lint-test.yml @@ -8,7 +8,7 @@ on: jobs: build-lint-test: name: Build, Lint, and Test - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 16.x, 18.x, 20.x] @@ -24,7 +24,7 @@ jobs: - run: yarn test all-jobs-pass: name: All jobs pass - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest needs: - build-lint-test steps: