From d36d56747ecb5da9d97c5ed822b50dfd110b31ef Mon Sep 17 00:00:00 2001 From: Jason Green Date: Tue, 13 Feb 2024 23:23:13 +0000 Subject: [PATCH 1/4] chore: update node versions for CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 45fdb2a07..94a8f0487 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x, 19.x] + node-version: [16.x, 18.x, 20.x, 22.x, 24.x] steps: - uses: actions/checkout@v2 From bc8e5286dfc2903f5de80abbf47e2b0e10b9bcca Mon Sep 17 00:00:00 2001 From: Jason Green Date: Wed, 14 Feb 2024 21:34:29 +0000 Subject: [PATCH 2/4] chore: change node versions to build and test --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94a8f0487..66566bed8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x, 22.x, 24.x] + node-version: [16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 From b06953b234d10b641c47b5778a6b138d9c6dea0c Mon Sep 17 00:00:00 2001 From: Jason Green Date: Wed, 14 Feb 2024 22:01:40 +0000 Subject: [PATCH 3/4] chore: try 21.x too --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66566bed8..81ce473b9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x] + node-version: [16.x, 18.x, 20.x, 21.x] steps: - uses: actions/checkout@v2 From b0ed857086d36475fb7f669a6c230214a9a898aa Mon Sep 17 00:00:00 2001 From: Jason Green Date: Wed, 14 Feb 2024 22:08:07 +0000 Subject: [PATCH 4/4] chore: remove 21 for now --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81ce473b9..8ab3775ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x, 20.x, 21.x] + node-version: [16.x, 18.x, 20.x] steps: - uses: actions/checkout@v2 @@ -23,7 +23,7 @@ jobs: - run: npm install - run: git submodule update --init - name: update website - if: ${{ github.event_name == 'push' && matrix.node-version == '14.x' }} + if: ${{ github.event_name == 'push' && matrix.node-version == '16.x' }} run: ./scripts/publish-site env: GH_TOKEN_PUBLIC: ${{ secrets.GH_TOKEN_PUBLIC }}