From 5a982d55eec3252700280d45a3210c02a31d3cc6 Mon Sep 17 00:00:00 2001 From: Tony Gaskell Date: Wed, 10 Sep 2025 09:09:32 -1000 Subject: [PATCH 1/2] chore: Bump nodejs version in runners to v20 --- .github/workflows/publish-radfish.yml | 2 +- .github/workflows/publish-react-radfish.yml | 2 +- .github/workflows/run-tests.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-radfish.yml b/.github/workflows/publish-radfish.yml index bf76a800..980a8614 100644 --- a/.github/workflows/publish-radfish.yml +++ b/.github/workflows/publish-radfish.yml @@ -52,7 +52,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: "20" registry-url: 'https://registry.npmjs.org' - name: Install dependencies diff --git a/.github/workflows/publish-react-radfish.yml b/.github/workflows/publish-react-radfish.yml index b27111a0..26d83eaa 100644 --- a/.github/workflows/publish-react-radfish.yml +++ b/.github/workflows/publish-react-radfish.yml @@ -52,7 +52,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: "20" registry-url: 'https://registry.npmjs.org' - name: Install dependencies diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 8018dcc6..866bf18a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: "18" + node-version: "20" - name: Install workspace dependencies run: npm install --legacy-peer-deps From 48fa8f6914928b04ef8bddf016eaf8a32fb2574a Mon Sep 17 00:00:00 2001 From: Tony Gaskell Date: Wed, 10 Sep 2025 11:57:30 -1000 Subject: [PATCH 2/2] fix: remove peer deps flag from test workflow --- .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 395e60ff..ab152ce1 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -35,7 +35,7 @@ jobs: working-directory: . - name: Install dependencies - run: npm install --legacy-peer-deps + run: npm install working-directory: templates/react-javascript - name: Build project