Skip to content

Commit 114087f

Browse files
committed
Merge remote-tracking branch 'origin/main' into fix/ignore-blocks-deleted-from-the-config
2 parents 7261358 + bc9b501 commit 114087f

File tree

44 files changed

+221
-142
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+221
-142
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
pnpm-version:
1111
description: Pnpm version
1212
required: true
13-
default: 10.12.1
13+
default: 9.7.1
1414
pnpm-run-install:
1515
description: Whether to run pnpm install
1616
required: false

.github/reproduction-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ There are a couple ways run integration tests:
4040

4141
- **Granularly** - you can run individual tests in vscode by installing the Jest Runner plugin and using that to run individual tests. Clicking the `debug` button will run the test in debug mode allowing you to set break points.
4242

43-
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/packages/payload/src/assets/images/github/int-debug.png" />
43+
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/.github/assets/int-debug.png" />
4444

4545
- **Manually** - you can run all int tests in the `/test/_community/int.spec.ts` file by running the following command:
4646

@@ -57,7 +57,7 @@ The easiest way to run E2E tests is to install
5757

5858
Once they are installed you can open the `testing` tab in vscode sidebar and drill down to the test you want to run, i.e. `/test/_community/e2e.spec.ts`
5959

60-
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/packages/payload/src/assets/images/github/e2e-debug.png" />
60+
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/.github/assets/e2e-debug.png" />
6161

6262
#### Notes
6363

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818

1919
env:
2020
NODE_VERSION: 23.11.0
21-
PNPM_VERSION: 10.12.1
21+
PNPM_VERSION: 9.7.1
2222
DO_NOT_TRACK: 1 # Disable Turbopack telemetry
2323
NEXT_TELEMETRY_DISABLED: 1 # Disable Next telemetry
2424

@@ -163,6 +163,7 @@ jobs:
163163
needs: [changes, build]
164164
if: ${{ needs.changes.outputs.needs_tests == 'true' }}
165165
name: int-${{ matrix.database }}
166+
timeout-minutes: 45
166167
strategy:
167168
fail-fast: false
168169
matrix:
@@ -258,6 +259,7 @@ jobs:
258259
needs: [changes, build]
259260
if: ${{ needs.changes.outputs.needs_tests == 'true' }}
260261
name: e2e-${{ matrix.suite }}
262+
timeout-minutes: 45
261263
strategy:
262264
fail-fast: false
263265
matrix:

.github/workflows/post-release-templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
NODE_VERSION: 23.11.0
11-
PNPM_VERSION: 10.12.1
11+
PNPM_VERSION: 9.7.1
1212
DO_NOT_TRACK: 1 # Disable Turbopack telemetry
1313
NEXT_TELEMETRY_DISABLED: 1 # Disable Next telemetry
1414

.github/workflows/post-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
env:
1515
NODE_VERSION: 23.11.0
16-
PNPM_VERSION: 10.12.1
16+
PNPM_VERSION: 9.7.1
1717
DO_NOT_TRACK: 1 # Disable Turbopack telemetry
1818
NEXT_TELEMETRY_DISABLED: 1 # Disable Next telemetry
1919

.github/workflows/publish-prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
NODE_VERSION: 23.11.0
11-
PNPM_VERSION: 10.12.1
11+
PNPM_VERSION: 9.7.1
1212
DO_NOT_TRACK: 1 # Disable Turbopack telemetry
1313
NEXT_TELEMETRY_DISABLED: 1 # Disable Next telemetry
1414

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pnpm 10.12.1
1+
pnpm 9.7.1
22
nodejs 23.11.0

ISSUE_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ There are a couple ways to do this:
4545

4646
- **Granularly** - you can run individual tests in vscode by installing the Jest Runner plugin and using that to run individual tests. Clicking the `debug` button will run the test in debug mode allowing you to set break points.
4747

48-
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/packages/payload/src/assets/images/github/int-debug.png" />
48+
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/.github/assets/int-debug.png" />
4949

5050
- **Manually** - you can run all int tests in the `/test/_community/int.spec.ts` file by running the following command:
5151

@@ -62,7 +62,7 @@ The easiest way to run E2E tests is to install
6262

6363
Once they are installed you can open the `testing` tab in vscode sidebar and drill down to the test you want to run, i.e. `/test/_community/e2e.spec.ts`
6464

65-
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/packages/payload/src/assets/images/github/e2e-debug.png" />
65+
<img src="https://raw.githubusercontent.com/payloadcms/payload/main/.github/assets/e2e-debug.png" />
6666

6767
#### Notes
6868

0 commit comments

Comments
 (0)