We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6158775 commit 1c720bcCopy full SHA for 1c720bc
1 file changed
.github/workflows/e2e-next-faustwp-example.yml
@@ -2,8 +2,8 @@ name: E2E Test Packages
2
3
on:
4
pull_request:
5
- paths-ignore:
6
- - '**/*.md'
+ paths:
+ - 'examples/next/**'
7
8
jobs:
9
e2e-test-faustwp-getting-started-example:
@@ -37,12 +37,11 @@ jobs:
37
# and use the PR branch to pull the correct example URL
38
- name: npx create next app
39
run: |
40
- npx degit ${PR_REPO}#${PR_BRANCH} --src=examples/next/faustwp-getting-started e2e-app \
41
- - name: Install e2e dependencies
42
- working-directory: e2e-app
43
- run: |
44
- npm ci
45
- ls -la
+ npx create-next-app@13 \
+ -e https://github.com/${PR_REPO}/tree/${PR_BRANCH} \
+ --example-path examples/next/faustwp-getting-started \
+ --use-npm \
+ e2e-app
46
- name: install and build packages
47
working-directory: ./
48
0 commit comments