File tree Expand file tree Collapse file tree 6 files changed +18515
-24775
lines changed
Expand file tree Collapse file tree 6 files changed +18515
-24775
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ jobs:
3838 uses : actions/setup-node@v6
3939 with :
4040 node-version : ${{ env.NODE_VERSION }}
41- cache : npm
42- cache-dependency-path : website/package-lock.json
41+ cache : yarn
42+ cache-dependency-path : website/yarn.lock
4343
4444 - name : Install Node dependencies
4545 run : |
46- npm install
47- npm update @apify/docs-theme
46+ yarn install
47+ yarn upgrade @apify/docs-theme
4848 working-directory : ./website
4949
5050 # We do this as early as possible to prevent conflicts if someone else would push something in the meantime
5353 git config user.name 'GitHub Actions'
5454 git config user.email 'github-actions[bot]@users.noreply.github.com'
5555 git add website/package.json
56- git add website/package-lock.json
56+ git add website/yarn.lock
5757 git diff-index --quiet HEAD || git commit -m 'chore: Automatic docs theme update [skip ci]' || true
5858 git push
5959
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ build-api-reference:
7272 cd website && uv run ./build_api_reference.sh
7373
7474build-docs :
75- cd website && uv run npm clean-install && uv run npm run build
75+ cd website && corepack enable && yarn && uv run yarn build
7676
7777run-docs : build-api-reference
78- cd website && uv run npm clean-install && uv run npm run start
78+ cd website && corepack enable && yarn && uv run yarn start
Original file line number Diff line number Diff line change 1+ nodeLinker : node-modules
2+ enableGlobalCache : true
You can’t perform that action at this time.
0 commit comments