Compare commits

..

No commits in common. "0c802ba1652296c79d26ff3e990578e67e6734b1" and "3b467dec95d049cb2a4138300154eee2487d3db0" have entirely different histories.

1 changed files with 5 additions and 1 deletions

View File

@ -206,7 +206,6 @@ jobs:
timeout-minutes: 60
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
DISABLE_V8_COMPILE_CACHE: 1
steps:
- name: Checkout repo
uses: actions/checkout@v4
@ -230,6 +229,11 @@ jobs:
with:
node-version-file: .node-version
# node-gyp is missing in (at least) npm 9.8.1.
# TODO: Remove once we update to npm>=10?
- name: Install node-gyp
run: npm install -g node-gyp
- name: Fetch dependencies from cache
id: cache-node-modules
uses: actions/cache@v4