Skip to content

Commit f534a23

Browse files
committed
chore: updated workflow with new file/folder names
1 parent 0aeee0c commit f534a23

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/cypress-canary.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88
paths:
99
- 'demos/canary/**/*.{js,jsx,ts,tsx}'
10-
- 'cypress/integration/canary/**/*.{ts,js}'
10+
- 'cypress/e2e/canary/**/*.{ts,js}'
1111
- 'src/**/*.{ts,js}'
1212
jobs:
1313
cypress:
@@ -62,9 +62,9 @@ jobs:
6262
headless: true
6363
record: true
6464
parallel: true
65-
config-file: cypress/config/canary.json
65+
config-file: cypress/config/canary.config.ts
6666
group: 'Next Runtime - Demo Canary'
67-
spec: cypress/integration/canary/*
67+
spec: cypress/e2e/canary/*
6868
env:
6969
DEBUG: '@cypress/github-action'
7070
CYPRESS_baseUrl: ${{ steps.deploy.outputs.origin-url }}

.github/workflows/cypress-demo-nx.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88
paths:
99
- 'demos/nx-next-monorepo-demo/**/*.{js,jsx,ts,tsx}'
10-
- 'cypress/integration/nx/**/*.{ts,js}'
10+
- 'cypress/e2e/nx/**/*.{ts,js}'
1111
- 'src/**/*.{ts,js}'
1212
jobs:
1313
cypress:
@@ -62,9 +62,9 @@ jobs:
6262
headless: true
6363
record: true
6464
parallel: true
65-
config-file: cypress/config/nx-demo.json
65+
config-file: cypress/config/nx-demo.config.ts
6666
group: 'Next Runtime - Demo NX'
67-
spec: cypress/integration/nx/*
67+
spec: cypress/e2e/nx/*
6868
env:
6969
DEBUG: '@cypress/github-action'
7070
CYPRESS_baseUrl: ${{ steps.deploy.outputs.origin-url }}

.github/workflows/cypress-demo-static.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88
paths:
99
- 'demos/static-root/**/*.{js,jsx,ts,tsx}'
10-
- 'cypress/integration/static/**/*.{ts,js}'
10+
- 'cypress/e2e/static/**/*.{ts,js}'
1111
- 'src/**/*.{ts,js}'
1212
jobs:
1313
cypress:
@@ -62,9 +62,9 @@ jobs:
6262
headless: true
6363
record: true
6464
parallel: true
65-
config-file: cypress/config/static-root.json
65+
config-file: cypress/config/static-root.config.ts
6666
group: 'Next Runtime - Demo Static'
67-
spec: cypress/integration/static-root/*
67+
spec: cypress/e2e/static-root/*
6868
env:
6969
DEBUG: '@cypress/github-action'
7070
CYPRESS_baseUrl: ${{ steps.deploy.outputs.origin-url }}

.github/workflows/cypress-demo.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88
paths:
99
- 'demos/default/**/*.{js,jsx,ts,tsx}'
10-
- 'cypress/integration/default/**/*.{ts,js}'
10+
- 'cypress/e2e/default/**/*.{ts,js}'
1111
- 'src/**/*.{ts,js}'
1212
jobs:
1313
cypress:
@@ -62,9 +62,9 @@ jobs:
6262
headless: true
6363
record: true
6464
parallel: true
65-
config-file: cypress/config/ci.json
65+
config-file: cypress/config/ci.config.ts
6666
group: 'Next Runtime - Demo'
67-
spec: cypress/integration/default/*
67+
spec: cypress/e2e/default/*
6868
env:
6969
DEBUG: '@cypress/github-action'
7070
CYPRESS_baseUrl: ${{ steps.deploy.outputs.origin-url }}

.github/workflows/cypress-middleware.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- main
88
paths:
99
- 'demos/middleware/**/*.{js,jsx,ts,tsx}'
10-
- 'cypress/integration/middleware/**/*.{ts,js}'
10+
- 'cypress/e2e/middleware/**/*.{ts,js}'
1111
- 'src/**/*.{ts,js}'
1212
jobs:
1313
cypress:
@@ -62,9 +62,9 @@ jobs:
6262
headless: true
6363
record: true
6464
parallel: true
65-
config-file: cypress/config/middleware.json
65+
config-file: cypress/config/middleware.config.ts
6666
group: 'Next Runtime - Middleware'
67-
spec: cypress/integration/middleware/*
67+
spec: cypress/e2e/middleware/*
6868
env:
6969
DEBUG: '@cypress/github-action'
7070
CYPRESS_baseUrl: ${{ steps.deploy.outputs.origin-url }}

0 commit comments

Comments
 (0)