Skip to content

Commit

Permalink
ci: pin react-scripts@4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dpilch committed Dec 14, 2021
1 parent cd14308 commit f14ef1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
working-directory: amplify-cli/packages/amplify-util-uibuilder
run: npm test
- name: Create a test react app
run: npx create-react-app e2e-test-app
run: npx create-react-app e2e-test-app --scripts-version 4.0.3
- name: Install test app dependencies
working-directory: e2e-test-app
run: |
Expand Down
2 changes: 1 addition & 1 deletion scripts/integ-setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ call npm run build

:: create
chdir packages
call npx create-react-app integration-test --use-npm --template typescript
call npx create-react-app integration-test --use-npm --template typescript --scripts-version 4.0.3
chdir ..

:: add files
Expand Down
2 changes: 1 addition & 1 deletion scripts/integ-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ npm run integ:clean
npm run build

# create
(cd packages && npx create-react-app integration-test --use-npm --template typescript)
(cd packages && npx create-react-app integration-test --use-npm --template typescript --scripts-version 4.0.3)

# add files
npm run integ:templates
Expand Down

0 comments on commit f14ef1e

Please sign in to comment.