From 0e183ede7cbe795e90da36be346cc83d77a5a45f Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Mon, 4 Jul 2022 14:00:48 -0700 Subject: [PATCH] Fix npm command in react-integration workflow --- .github/workflows/react-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/react-integration.yml b/.github/workflows/react-integration.yml index 6e105bb7..c17178fa 100644 --- a/.github/workflows/react-integration.yml +++ b/.github/workflows/react-integration.yml @@ -15,6 +15,6 @@ jobs: node-version: '16.x' - run: npm install # Update react-native-web to use react@next - - run: npm update react@next react-dom@next -w react-native-web + - run: npm install react@next react-dom@next -w react-native-web # Run the unit tests - run: npm run unit