From 16009459bda4fb294ea8a3a49119bf9a41946645 Mon Sep 17 00:00:00 2001 From: Ewan Harris Date: Mon, 2 Oct 2023 09:57:50 +0100 Subject: [PATCH] Use node 20 for vue-cli test (#1169) ### Changes It seems there's an issue with 18.18 that is causing the build to hang, moving to 20 fixes this, check the various test performed in the [actions tab](https://github.com/auth0/auth0-spa-js/actions) ### References ### Testing - [ ] This change adds unit test coverage - [ ] This change adds integration test coverage - [ ] This change has been tested on the latest version of the platform/language ### Checklist - [x] I have read the [Auth0 general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md) - [x] I have read the [Auth0 Code of Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md) - [x] All code quality tools/guidelines have been run/followed --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 71ce637ce..6ba37b51a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -137,10 +137,10 @@ jobs: - name: Run framework tests uses: ./.github/actions/framework with: - node: ${{ env.NODE_VERSION }} + node: 20 cache: ${{ env.CACHE_KEY }} install: | - npx -p @vue/cli vue create my-app -d < /dev/null + npx -p @vue/cli vue create my-app -d --packageManager npm < /dev/null content: | echo -e "${{ env.AUTH0_CONTENT }}" > src/auth0.js; import: |