Skip to content

Commit 684e208

Browse files
committed
Replace npm ci by npm i
We don't have a package-lock.json file Signed-off-by: Vitor Mattos <vitor@php.rio>
1 parent c7f0956 commit 684e208

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Install & Build
2020
run: |
21-
npm ci
21+
npm i
2222
npm install -g cross-env
2323
cross-env PUBLIC_PATH=/vue-pdf-editor/ npm run build
2424

.github/workflows/lint-eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
6161

6262
- name: Install dependencies
63-
run: npm ci
63+
run: npm i
6464

6565
- name: Lint
6666
run: npm run lint

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
env:
4242
CYPRESS_INSTALL_BINARY: 0
4343
run: |
44-
npm ci
44+
npm i
4545
npm run build:lib
4646
4747
- name: Publish

0 commit comments

Comments
 (0)