Skip to content

Commit

Permalink
fix(projects-test): explicitly install next version 12 to fix CI (#25374
Browse files Browse the repository at this point in the history
)
  • Loading branch information
TristanWatanabe authored Oct 25, 2022
1 parent 4afa85e commit 7733f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/fluentui/projects-test/src/nextjs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function nextjs() {
logger(`✔️ Temporary directories created under ${tempPaths.root}`);

logger('STEP 1. Add dependencies to test project');
const dependencies = ['next', 'react@17', 'react-dom@17'].join(' ');
const dependencies = ['next@12', 'react@17', 'react-dom@17'].join(' ');
await shEcho(`yarn add ${dependencies}`, tempPaths.testApp);
logger(`✔️ Dependencies were installed`);

Expand Down

0 comments on commit 7733f95

Please sign in to comment.