1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-07 12:30:06 +00:00

fix(build): install cypress binary and cache only in relevant pipeline

This commit is contained in:
mulahasanovic
2025-12-12 17:31:57 +01:00
parent d45b528846
commit 8064a843e8
4 changed files with 22 additions and 18 deletions

View File

@@ -23,14 +23,12 @@ jobs:
node-version:
${{ matrix.node-version }}
# 2. Restore npm and cypress cache manually
- name: Restore npm and cypress cache
# 2. Restore npm cache manually
- name: Restore npm cache
uses: actions/cache@v3
id: npm-cache
with:
path: |
~/.npm
~/.cypress/Cypress
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-