Skip to content

Commit

Permalink
Merge branch 'main' into update-next-13.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LekoArts committed Apr 27, 2023
2 parents a418389 + 25108c5 commit fed7e3f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 18 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/cypress-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ jobs:
cypress:
name: Cypress
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -59,9 +55,7 @@ jobs:
uses: cypress-io/github-action@v5
with:
browser: chrome
headless: true
record: true
parallel: true
config-file: cypress/config/canary.config.ts
group: 'Next Runtime - Demo Canary'
spec: cypress/e2e/canary/*
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/cypress-demo-nx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ jobs:
cypress:
name: Cypress
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -59,9 +55,7 @@ jobs:
uses: cypress-io/github-action@v5
with:
browser: chrome
headless: true
record: true
parallel: true
config-file: cypress/config/nx-demo.config.ts
group: 'Next Runtime - Demo NX'
spec: cypress/e2e/nx/*
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/cypress-demo-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4]
containers: [1, 2]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -59,7 +59,6 @@ jobs:
uses: cypress-io/github-action@v5
with:
browser: chrome
headless: true
record: true
parallel: true
config-file: cypress/config/static-root.config.ts
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/cypress-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ jobs:
uses: cypress-io/github-action@v5
with:
browser: chrome
headless: true
record: true
parallel: true
config-file: cypress/config/ci.config.ts
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/cypress-middleware.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
containers: [1, 2, 3, 4]
containers: [1, 2]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -59,7 +59,6 @@ jobs:
uses: cypress-io/github-action@v5
with:
browser: chrome
headless: true
record: true
parallel: true
config-file: cypress/config/middleware.config.ts
Expand Down
14 changes: 13 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>netlify/renovate-config"]
"extends": ["local>netlify/renovate-config"],
"packageRules": [
{
"groupName": "Next.js",
"matchPackagePatterns": ["next"],
"matchUpdateTypes": ["patch", "minor"]
},
{
"groupName": "Next.js (Major)",
"matchPackagePatterns": ["next"],
"matchUpdateTypes": ["major"]
}
]
}

0 comments on commit fed7e3f

Please sign in to comment.