We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b8b95 commit 5ad5251Copy full SHA for 5ad5251
.github/workflows/ci.yml
@@ -35,14 +35,14 @@ jobs:
35
cache-name: cache-node-modules
36
with:
37
path: ~/.npm
38
- key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
+ key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
39
restore-keys: |
40
${{ runner.os }}-build-${{ env.cache-name }}-
41
${{ runner.os }}-build-
42
${{ runner.os }}-
43
44
- name: Install NPM dependencies
45
- run: npm ci
+ run: npm install
46
47
- name: Build the project
48
run: npm run build
.gitignore
@@ -10,3 +10,4 @@ bower_components
10
11
node_modules
12
*.lock
13
+package-lock.json
0 commit comments