Skip to content

Commit 8f6869b

Browse files
justin808claude
andcommitted
Fix: Disable yarn caching in examples workflow to prevent V8 crash
The examples.yml workflow was experiencing Node.js V8 crashes during yarn cache dir commands, similar to the issue fixed in commit a1c71ea. This commit applies the same fix - disabling yarn caching until the upstream V8 issue is resolved. Error observed: ``` # Fatal error in , line 0 # unreachable code ``` Tracking: actions/setup-node#1028 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 9431cdc commit 8f6869b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/examples.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ jobs:
6666
uses: actions/setup-node@v4
6767
with:
6868
node-version: 20
69-
cache: yarn
70-
cache-dependency-path: '**/yarn.lock'
69+
# TODO: Re-enable yarn caching once Node.js V8 cache crash is fixed
70+
# Tracking: https://github.com/actions/setup-node/issues/1028
71+
# cache: yarn
72+
# cache-dependency-path: '**/yarn.lock'
7173
- name: Print system information
7274
run: |
7375
echo "Linux release: "; cat /etc/issue

0 commit comments

Comments
 (0)