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/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
uses: actions/configure-pages@v6

- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5
with:
path: ./website/build

Expand Down
18 changes: 14 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,19 @@ jobs:
turbo-${{ github.job }}-${{ github.ref_name }}-

- name: Install Dependencies
run: |
yarn
yarn playwright install --with-deps
run: yarn

- name: Cache Playwright browsers
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
playwright-${{ runner.os }}-

- name: Install Playwright browsers
timeout-minutes: 10
run: yarn playwright install --with-deps

- name: Build
run: yarn ci:build
Expand Down Expand Up @@ -160,7 +170,7 @@ jobs:
pull: '--rebase --autostash'

- name: Publish packages
uses: apify/actions/execute-workflow@v1.1.2
uses: apify/actions/execute-workflow@v1.2.0
with:
workflow: publish-to-npm.yml
inputs: >
Expand Down
22 changes: 17 additions & 5 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# tests on windows are extremely unstable
# os: [ ubuntu-22.04, windows-2019 ]
os: [ ubuntu-22.04 ]
node-version: [ 18, 20, 22, 24 ]
node-version: [ 20, 22, 24 ]

steps:
- name: Checkout repository
Expand Down Expand Up @@ -59,9 +59,21 @@ jobs:
turbo-${{ github.job }}-${{ matrix.node-version }}-${{ github.ref_name }}-

- name: Install Dependencies
run: |
yarn
yarn playwright install --with-deps
run: yarn
env:
YARN_IGNORE_NODE: 1

- name: Cache Playwright browsers
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
playwright-${{ runner.os }}-

- name: Install Playwright browsers
timeout-minutes: 10
run: yarn playwright install --with-deps
env:
YARN_IGNORE_NODE: 1

Expand Down Expand Up @@ -327,7 +339,7 @@ jobs:

- name: Publish packages
if: steps.changed-packages.outputs.changed_packages != '0'
uses: apify/actions/execute-workflow@v1.1.2
uses: apify/actions/execute-workflow@v1.2.0
with:
workflow: publish-to-npm.yml
inputs: >
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,18 @@ jobs:
- name: Install Dependencies
run: yarn

- name: Cache Playwright browsers
if: (matrix.storage != 'PLATFORM')
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
playwright-${{ runner.os }}-

- name: Install Playwright Dependencies
if: (matrix.storage != 'PLATFORM')
timeout-minutes: 10
run: yarn playwright install --with-deps

- name: Build
Expand Down
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@apify/log": "^2.4.0",
"@apify/tsconfig": "^0.1.0",
"@biomejs/biome": "^2.3.11",
"@commitlint/config-conventional": "^20.0.0",
"@commitlint/config-conventional": "^21.0.0",
"@playwright/browser-chromium": "1.60.0",
"@playwright/browser-firefox": "1.60.0",
"@playwright/browser-webkit": "1.60.0",
Expand Down Expand Up @@ -87,8 +87,8 @@
"apify-node-curl-impersonate": "^1.0.15",
"basic-auth-parser": "^0.0.2",
"body-parser": "^2.0.0",
"camoufox-js": "^0.9.3",
"commitlint": "^20.0.0",
"camoufox-js": "^0.10.0",
"commitlint": "^21.0.0",
"cross-env": "^10.0.0",
"deep-equal": "^2.0.5",
"eslint": "^9.23.0",
Expand Down Expand Up @@ -119,11 +119,12 @@
"**/*.{js,ts,mjs,mts,cjs,cts,json,css}": "biome format --write --no-errors-on-unmatched"
},
"resolutions": {
"tmp": "^0.2.6"
"tmp": "^0.2.6",
"@puppeteer/browsers": "^3.0.4"
},
"packageManager": "yarn@4.10.3",
"volta": {
"node": "24.14.1",
"node": "24.16.0",
"yarn": "4.10.3"
}
}
4 changes: 2 additions & 2 deletions packages/templates/templates/camoufox-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"description": "This is an example of a Crawlee project.",
"dependencies": {
"@crawlee/impit-client": "^3.0.0",
"camoufox-js": "^0.9.0",
"camoufox-js": "^0.10.0",
"crawlee": "^3.0.0",
"playwright": "1.58.2"
"playwright": "1.60.0"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@crawlee/impit-client": "^3.0.0",
"crawlee": "^3.0.0",
"playwright": "1.58.2"
"playwright": "1.60.0"
},
"scripts": {
"start": "node src/main.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@crawlee/impit-client": "^3.0.0",
"crawlee": "^3.0.0",
"playwright": "1.58.2"
"playwright": "1.60.0"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/templates/templates/playwright-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@crawlee/impit-client": "^3.0.0",
"crawlee": "^3.0.0",
"playwright": "1.58.2"
"playwright": "1.60.0"
},
"scripts": {
"start": "node src/main.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/templates/templates/playwright-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dependencies": {
"@crawlee/impit-client": "^3.0.0",
"crawlee": "^3.0.0",
"playwright": "1.58.2"
"playwright": "1.60.0"
},
"devDependencies": {
"@apify/tsconfig": "^0.1.0",
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"resolveJsonModule": false,
"emitDecoratorMetadata": false,
"module": "Node16",
"moduleResolution": "Node16"
"moduleResolution": "Node16",
"declarationMap": false,
"sourceMap": false
},
"include": ["./packages/*/src/**/*"],
"exclude": ["**/node_modules", "**/dist"]
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"sourceMap": true,
"paths": {
"crawlee": ["./packages/crawlee/src"],
"@crawlee/basic": ["./packages/basic-crawler/src"],
Expand Down
22 changes: 11 additions & 11 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
"devDependencies": {
"@apify/eslint-config-ts": "^0.4.0",
"@apify/tsconfig": "^0.1.0",
"@docusaurus/module-type-aliases": "3.10.0",
"@docusaurus/types": "3.10.0",
"@docusaurus/module-type-aliases": "3.10.1",
"@docusaurus/types": "3.10.1",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
Expand All @@ -34,17 +34,17 @@
"typescript": "^6.0.0"
},
"dependencies": {
"@apify/docusaurus-plugin-typedoc-api": "5.1.4",
"@apify/docusaurus-plugin-typedoc-api": "5.1.7",
"@apify/ui-icons": "^1.23.0",
"@apify/utilities": "^2.8.0",
"@docusaurus/core": "3.10.0",
"@docusaurus/faster": "3.10.0",
"@docusaurus/mdx-loader": "3.10.0",
"@docusaurus/plugin-client-redirects": "3.10.0",
"@docusaurus/plugin-content-docs": "3.10.0",
"@docusaurus/preset-classic": "3.10.0",
"@docusaurus/theme-common": "3.10.0",
"@docusaurus/theme-mermaid": "^3.10.0",
"@docusaurus/core": "3.10.1",
"@docusaurus/faster": "3.10.1",
"@docusaurus/mdx-loader": "3.10.1",
"@docusaurus/plugin-client-redirects": "3.10.1",
"@docusaurus/plugin-content-docs": "3.10.1",
"@docusaurus/preset-classic": "3.10.1",
"@docusaurus/theme-common": "3.10.1",
"@docusaurus/theme-mermaid": "3.10.1",
"@giscus/react": "^3.0.0",
"@mdx-js/react": "^3.0.1",
"@signalwire/docusaurus-plugin-llms-txt": "^1.2.1",
Expand Down
Loading
Loading