mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 17:36:14 -04:00
plugins: Always install plugins with --no-save
The npm CLI can get confused if `package.json` or `package-lock.json` exist.
This commit is contained in:
parent
b3b5af3c3c
commit
6163339c0d
8 changed files with 12 additions and 9 deletions
2
.github/workflows/backend-tests.yml
vendored
2
.github/workflows/backend-tests.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
|||
|
||||
- name: Install Etherpad plugins
|
||||
run: >
|
||||
npm install
|
||||
npm install --no-save
|
||||
ep_align
|
||||
ep_author_hover
|
||||
ep_cursortrace
|
||||
|
|
2
.github/workflows/frontend-admin-tests.yml
vendored
2
.github/workflows/frontend-admin-tests.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
|||
|
||||
# We intentionally install a much old ep_align version to test update minor versions
|
||||
- name: Install etherpad plugins
|
||||
run: npm install ep_align@0.2.27
|
||||
run: npm install --no-save ep_align@0.2.27
|
||||
|
||||
# Nuke plugin tests
|
||||
- name: Install etherpad plugins
|
||||
|
|
2
.github/workflows/frontend-tests.yml
vendored
2
.github/workflows/frontend-tests.yml
vendored
|
@ -65,7 +65,7 @@ jobs:
|
|||
|
||||
- name: Install Etherpad plugins
|
||||
run: >
|
||||
npm install
|
||||
npm install --no-save
|
||||
ep_align
|
||||
ep_author_hover
|
||||
ep_cursortrace
|
||||
|
|
2
.github/workflows/load-test.yml
vendored
2
.github/workflows/load-test.yml
vendored
|
@ -52,7 +52,7 @@ jobs:
|
|||
|
||||
- name: Install etherpad plugins
|
||||
run: >
|
||||
npm install
|
||||
npm install --no-save
|
||||
ep_align
|
||||
ep_author_hover
|
||||
ep_cursortrace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue