Skip to content

Commit

Permalink
Don't manually update npm in CRA test on CircleCI (#13725)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Sep 2, 2021
1 parent fce0cff commit b335dcc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/integration-tests/e2e-create-react-app.sh
Expand Up @@ -17,8 +17,10 @@ set -x
git clone --depth=1 https://github.com/facebook/create-react-app.git tmp/create-react-app
cd tmp/create-react-app || exit

# Update npm to v7
npm i -g npm@7
# CircleCI already has npm 7
if [ "$BABEL_8_BREAKING" != true ] ; then
npm i -g npm@7
fi

#==============================================================================#
# TEST #
Expand Down

0 comments on commit b335dcc

Please sign in to comment.