Skip to content

Commit

Permalink
ci: use create-next-app@13 in e2e test workflows (#1627)
Browse files Browse the repository at this point in the history
  • Loading branch information
mindctrl authored Oct 31, 2023
1 parent 5ccbd8b commit f8eba57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-next-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# and use the PR branch to pull the correct example URL
- name: npx create next app
run: |
npx create-next-app \
npx create-next-app@13 \
-e https://github.com/${PR_REPO}/tree/${PR_BRANCH} \
--example-path examples/next/getting-started \
--use-npm \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-next-faustwp-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
# and use the PR branch to pull the correct example URL
- name: npx create next app
run: |
npx create-next-app \
npx create-next-app@13 \
-e https://github.com/${PR_REPO}/tree/${PR_BRANCH} \
--example-path examples/next/faustwp-getting-started \
--use-npm \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
# Install faust-scaffold-ts via npx create next app
- name: npx create next app
run: |
npx create-next-app \
npx create-next-app@13 \
-e https://github.com/wpengine/faust-scaffold-ts/tree/main \
--use-npm \
e2e-app
- name: Install nightly versions
working-directory: e2e-app
run: |
Expand Down

0 comments on commit f8eba57

Please sign in to comment.