Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Start Docusaurus server
run: |
cd website
nohup yarn docusaurus serve --port 3000 --no-open &
nohup pnpm docusaurus serve --port 3000 --no-open &
sleep 5
curl -f http://localhost:3000 > /dev/null

Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build_and_test:
name: Build & Test
Expand Down Expand Up @@ -60,7 +56,7 @@ jobs:
uses: actions/cache@v6
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
key: playwright-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
playwright-${{ runner.os }}-

Expand Down
10 changes: 1 addition & 9 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,6 @@ module.exports = {
from: '/js/docs/guides/apify-platform',
to: '/js/docs/deployment/apify-platform',
},
{
from: '/js/docs/experiments/experiments-system-infomation-v2',
to: '/js/docs/experiments/experiments-system-information-v2',
},
{
from: '/js/docs/next/experiments/experiments-system-infomation-v2',
to: '/js/docs/next/experiments/experiments-system-information-v2',
},
{
from: '/js/docs/3.13/experiments/experiments-system-infomation-v2',
to: '/js/docs/3.13/experiments/experiments-system-information-v2',
Expand All @@ -193,7 +185,7 @@ module.exports = {
},
{
from: '/js/docs/3.16/experiments/experiments-system-infomation-v2',
to: '/js/docs/experiments/experiments-system-information-v2',
to: '/js/docs/3.16/experiments/experiments-system-information-v2',
},
],
// createRedirects(existingPath) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ The [`crawlee`](https://www.npmjs.com/package/crawlee) package consists of sever
- [`@crawlee/memory-storage`](https://crawlee.dev/js/api/memory-storage): [`@apify/storage-local`](https://npmjs.com/package/@apify/storage-local) alternative
- [`@crawlee/browser-pool`](https://crawlee.dev/js/api/browser-pool): previously [`browser-pool`](https://npmjs.com/package/browser-pool) package
- [`@crawlee/utils`](https://crawlee.dev/js/api/utils): utility methods
- [`@crawlee/types`](https://crawlee.dev/js/api/types): holds TS interfaces mainly about the [`StorageClient`](https://crawlee.dev/js/api/core/interface/StorageClient)
- [`@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)

### Installing Crawlee

Expand Down
Loading