Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Reis <vinicius.reis@nextcloud.com>2022-05-04 00:22:53 +0300
committerVinicius Reis <vinicius.reis@nextcloud.com>2022-05-04 00:22:53 +0300
commita4a9299e0e297136c1635dd4518b8d769a0abf5d (patch)
treeea0102e04ed8df3e122ed15cad843a1b6994b0e6 /.github
parent0ba4e9d8bad893791ac9cdb5d3c0af5056431d9c (diff)
💚 fix missing package-lock.json file
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cypress.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
index 372a90e7b..3545b058b 100644
--- a/.github/workflows/cypress.yml
+++ b/.github/workflows/cypress.yml
@@ -30,7 +30,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- cache: 'npm'
- name: Set up npm7
run: npm i -g npm@7
@@ -66,6 +65,13 @@ jobs:
with:
path: apps/${{ env.APP_NAME }}
+ - name: setup npm cache
+ uses: actions/setup-node@v3
+ with:
+ cache: 'npm'
+ cache-dependency-path: apps/${{ env.APP_NAME }}/package-lock.json
+ # cypress will install dependencies
+
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with: