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
5 changes: 4 additions & 1 deletion .github/workflows/lint-js-and-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: '**/yarn.lock'
- name: Print system information
run: |
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/package-js-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ${{ matrix.node-version != '22' && 'yarn' || '' }}
cache-dependency-path: '**/yarn.lock'
- name: Print system information
run: |
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/pro-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: 'react_on_rails_pro/**/yarn.lock'

- name: Print system information
Expand Down Expand Up @@ -139,7 +142,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: 'react_on_rails_pro/**/yarn.lock'

- name: Print system information
Expand Down Expand Up @@ -327,7 +333,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: 'react_on_rails_pro/**/yarn.lock'

- name: Print system information
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pro-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: 'react_on_rails_pro/**/yarn.lock'

- name: Print system information
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/pro-package-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: 'react_on_rails_pro/**/yarn.lock'

- name: Print system information
Expand Down Expand Up @@ -144,7 +147,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
# TODO: Re-enable cache when Node.js 22 V8 bug is fixed
# Disable cache for Node 22 due to V8 bug in 22.21.0
# Track: https://github.com/nodejs/node/issues/56010
cache: ''
cache-dependency-path: 'react_on_rails_pro/**/yarn.lock'

- name: Print system information
Expand Down