Skip to content

Commit 5ad5251

Browse files
committed
Remove package-lock.json
1 parent c2b8b95 commit 5ad5251

File tree

3 files changed

+3
-899
lines changed

3 files changed

+3
-899
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
cache-name: cache-node-modules
3636
with:
3737
path: ~/.npm
38-
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
38+
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
3939
restore-keys: |
4040
${{ runner.os }}-build-${{ env.cache-name }}-
4141
${{ runner.os }}-build-
4242
${{ runner.os }}-
4343
4444
- name: Install NPM dependencies
45-
run: npm ci
45+
run: npm install
4646

4747
- name: Build the project
4848
run: npm run build

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ bower_components
1010

1111
node_modules
1212
*.lock
13+
package-lock.json

0 commit comments

Comments
 (0)