Skip to content

Commit 8550ac2

Browse files
committed
docs: Migrate from npm to yarn
1 parent 9f25850 commit 8550ac2

File tree

6 files changed

+18515
-24775
lines changed

6 files changed

+18515
-24775
lines changed

.github/workflows/_release_docs.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
@@ -53,7 +53,7 @@ jobs:
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

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ build-api-reference:
7272
cd website && uv run ./build_api_reference.sh
7373

7474
build-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

7777
run-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

website/.yarnrc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
nodeLinker: node-modules
2+
enableGlobalCache: true

0 commit comments

Comments
 (0)