Skip to content

Commit d67c617

Browse files
authored
chore(ci): fix failing e2e and docs actions after rebase (#3874)
Fixes the last outstanding issues after the `master` <- `v4` rebase. This was a mix of incorrectly resolved conflicts and valid `v4` versioning changes in the docs.
1 parent 3d0b31a commit d67c617

4 files changed

Lines changed: 4 additions & 16 deletions

File tree

.github/workflows/test-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
- name: Start Docusaurus server
140140
run: |
141141
cd website
142-
nohup yarn docusaurus serve --port 3000 --no-open &
142+
nohup pnpm docusaurus serve --port 3000 --no-open &
143143
sleep 5
144144
curl -f http://localhost:3000 > /dev/null
145145

.github/workflows/test-e2e.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ concurrency:
1010
group: ${{ github.workflow }}-${{ github.ref }}
1111
cancel-in-progress: true
1212

13-
concurrency:
14-
group: ${{ github.workflow }}-${{ github.ref }}
15-
cancel-in-progress: true
16-
1713
jobs:
1814
build_and_test:
1915
name: Build & Test
@@ -60,7 +56,7 @@ jobs:
6056
uses: actions/cache@v6
6157
with:
6258
path: ~/.cache/ms-playwright
63-
key: playwright-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
59+
key: playwright-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
6460
restore-keys: |
6561
playwright-${{ runner.os }}-
6662

website/docusaurus.config.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,6 @@ module.exports = {
171171
from: '/js/docs/guides/apify-platform',
172172
to: '/js/docs/deployment/apify-platform',
173173
},
174-
{
175-
from: '/js/docs/experiments/experiments-system-infomation-v2',
176-
to: '/js/docs/experiments/experiments-system-information-v2',
177-
},
178-
{
179-
from: '/js/docs/next/experiments/experiments-system-infomation-v2',
180-
to: '/js/docs/next/experiments/experiments-system-information-v2',
181-
},
182174
{
183175
from: '/js/docs/3.13/experiments/experiments-system-infomation-v2',
184176
to: '/js/docs/3.13/experiments/experiments-system-information-v2',
@@ -193,7 +185,7 @@ module.exports = {
193185
},
194186
{
195187
from: '/js/docs/3.16/experiments/experiments-system-infomation-v2',
196-
to: '/js/docs/experiments/experiments-system-information-v2',
188+
to: '/js/docs/3.16/experiments/experiments-system-information-v2',
197189
},
198190
],
199191
// createRedirects(existingPath) {

website/versioned_docs/version-3.17/upgrading/upgrading_v3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The [`crawlee`](https://www.npmjs.com/package/crawlee) package consists of sever
3131
- [`@crawlee/memory-storage`](https://crawlee.dev/js/api/memory-storage): [`@apify/storage-local`](https://npmjs.com/package/@apify/storage-local) alternative
3232
- [`@crawlee/browser-pool`](https://crawlee.dev/js/api/browser-pool): previously [`browser-pool`](https://npmjs.com/package/browser-pool) package
3333
- [`@crawlee/utils`](https://crawlee.dev/js/api/utils): utility methods
34-
- [`@crawlee/types`](https://crawlee.dev/js/api/types): holds TS interfaces mainly about the [`StorageClient`](https://crawlee.dev/js/api/core/interface/StorageClient)
34+
- [`@crawlee/types`](https://crawlee.dev/js/api/types): holds TS interfaces mainly about the [`StorageClient`](https://crawlee.dev/js/api/3.17/core/interface/StorageClient)
3535

3636
### Installing Crawlee
3737

0 commit comments

Comments
 (0)