1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-08-10 22:11:50 +02:00

Chore: Disable cache on CI (#12509)

This commit is contained in:
Laurent Cozic
2025-06-16 10:37:29 +01:00
committed by GitHub
parent a08af91153
commit a76fad3ddf
2 changed files with 2 additions and 2 deletions

View File

@@ -122,7 +122,6 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install Yarn
run: |

View File

@@ -50,13 +50,14 @@ runs:
- uses: olegtarasov/get-tag@v2.1.4
- uses: dtolnay/rust-toolchain@stable
if: ${{ runner.os != 'Windows' }}
- uses: actions/setup-node@v4
with:
node-version: '18.19.1'
# Disable the cache on ARM runners. For now, we don't run "yarn install" on these
# environments and this breaks actions/setup-node.
# See https://github.com/laurent22/joplin/commit/47d0d3eb9e89153a609fb5441344da10904c6308#commitcomment-159577783.
cache: ${{ (!contains(runner.os, 'arm') && 'yarn') || '' }}
# cache: ${{ (!contains(runner.os, 'arm') && 'yarn') || '' }}
- name: Install Yarn
shell: bash