mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
GitHub workflows: Break list of plugins across multiple lines
This makes it easier to review changes to the list.
This commit is contained in:
parent
41a501778d
commit
57be60d1d4
3 changed files with 42 additions and 5 deletions
16
.github/workflows/backend-tests.yml
vendored
16
.github/workflows/backend-tests.yml
vendored
|
@ -52,8 +52,20 @@ jobs:
|
||||||
- name: Install all dependencies and symlink for ep_etherpad-lite
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
run: bin/installDeps.sh
|
run: bin/installDeps.sh
|
||||||
|
|
||||||
- name: Install etherpad plugins
|
- name: Install Etherpad plugins
|
||||||
run: npm install ep_align ep_author_hover ep_cursortrace ep_font_size ep_hash_auth ep_headings2 ep_markdown ep_readonly_guest ep_spellcheck ep_subscript_and_superscript ep_table_of_contents
|
run: >
|
||||||
|
npm install
|
||||||
|
ep_align
|
||||||
|
ep_author_hover
|
||||||
|
ep_cursortrace
|
||||||
|
ep_font_size
|
||||||
|
ep_hash_auth
|
||||||
|
ep_headings2
|
||||||
|
ep_markdown
|
||||||
|
ep_readonly_guest
|
||||||
|
ep_spellcheck
|
||||||
|
ep_subscript_and_superscript
|
||||||
|
ep_table_of_contents
|
||||||
|
|
||||||
# configures some settings and runs npm run test
|
# configures some settings and runs npm run test
|
||||||
- name: Run the backend tests
|
- name: Run the backend tests
|
||||||
|
|
17
.github/workflows/frontend-tests.yml
vendored
17
.github/workflows/frontend-tests.yml
vendored
|
@ -58,8 +58,21 @@ jobs:
|
||||||
- name: Install all dependencies and symlink for ep_etherpad-lite
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
run: bin/installDeps.sh
|
run: bin/installDeps.sh
|
||||||
|
|
||||||
- name: Install etherpad plugins
|
- name: Install Etherpad plugins
|
||||||
run: npm install ep_align ep_author_hover ep_cursortrace ep_font_size ep_hash_auth ep_headings2 ep_markdown ep_readonly_guest ep_spellcheck ep_subscript_and_superscript ep_table_of_contents ep_set_title_on_pad
|
run: >
|
||||||
|
npm install
|
||||||
|
ep_align
|
||||||
|
ep_author_hover
|
||||||
|
ep_cursortrace
|
||||||
|
ep_font_size
|
||||||
|
ep_hash_auth
|
||||||
|
ep_headings2
|
||||||
|
ep_markdown
|
||||||
|
ep_readonly_guest
|
||||||
|
ep_set_title_on_pad
|
||||||
|
ep_spellcheck
|
||||||
|
ep_subscript_and_superscript
|
||||||
|
ep_table_of_contents
|
||||||
|
|
||||||
- name: export GIT_HASH to env
|
- name: export GIT_HASH to env
|
||||||
id: environment
|
id: environment
|
||||||
|
|
14
.github/workflows/load-test.yml
vendored
14
.github/workflows/load-test.yml
vendored
|
@ -46,7 +46,19 @@ jobs:
|
||||||
run: sudo npm install -g etherpad-load-test
|
run: sudo npm install -g etherpad-load-test
|
||||||
|
|
||||||
- name: Install etherpad plugins
|
- name: Install etherpad plugins
|
||||||
run: npm install ep_align ep_author_hover ep_cursortrace ep_font_size ep_hash_auth ep_headings2 ep_markdown ep_readonly_guest ep_spellcheck ep_subscript_and_superscript ep_table_of_contents
|
run: >
|
||||||
|
npm install
|
||||||
|
ep_align
|
||||||
|
ep_author_hover
|
||||||
|
ep_cursortrace
|
||||||
|
ep_font_size
|
||||||
|
ep_hash_auth
|
||||||
|
ep_headings2
|
||||||
|
ep_markdown
|
||||||
|
ep_readonly_guest
|
||||||
|
ep_spellcheck
|
||||||
|
ep_subscript_and_superscript
|
||||||
|
ep_table_of_contents
|
||||||
|
|
||||||
# configures some settings and runs npm run test
|
# configures some settings and runs npm run test
|
||||||
- name: Run load test
|
- name: Run load test
|
||||||
|
|
Loading…
Reference in a new issue