Skip to content

Commit 40e21f0

Browse files
committed
newest cache is still borked
1 parent a852f43 commit 40e21f0

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/lint-js-and-ruby.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
uses: actions/cache@v4
4040
with:
4141
path: vendor/bundle
42-
key: package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-newest
42+
key: package-app-gem-cache-${{ hashFiles('Gemfile.lock') }}-lint
4343
- name: Install Node modules with Yarn for renderer package
4444
run: |
4545
yarn install --no-progress --no-emoji --frozen-lockfile
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/cache@v4
6161
with:
6262
path: spec/dummy/vendor/bundle
63-
key: dummy-app-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }}-newest
63+
key: dummy-app-gem-cache-${{ hashFiles('spec/dummy/Gemfile.lock') }}-lint
6464
- name: Install Ruby Gems for dummy app
6565
run: |
6666
cd spec/dummy

node_package/tests/jest.setup.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,12 @@ if (typeof window !== 'undefined') {
6363
global.ReadableStreamDefaultReader = ReadableStreamDefaultReader;
6464
}
6565

66+
global.console.log("All calls to console have been disabled in jest.setup.js")
67+
6668
global.console = {
6769
log: jest.fn(),
6870
error: jest.fn(),
6971
warn: jest.fn(),
7072
info: jest.fn(),
7173
debug: jest.fn(),
72-
};
74+
}

0 commit comments

Comments
 (0)