mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-25 09:56:15 -04:00
tests: try all supported node versions
This commit is contained in:
parent
29afb91b3e
commit
2994ef3c3c
2 changed files with 25 additions and 5 deletions
14
.github/workflows/backend-tests.yml
vendored
14
.github/workflows/backend-tests.yml
vendored
|
@ -13,13 +13,18 @@ jobs:
|
|||
name: Linux without plugins
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node: [10, 12, 14, 15]
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 12
|
||||
node-version: ${{ matrix.node }}
|
||||
|
||||
- name: Install libreoffice
|
||||
run: |
|
||||
|
@ -42,13 +47,18 @@ jobs:
|
|||
name: Linux with Plugins
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node: [10, 12, 14, 15]
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: 12
|
||||
node-version: ${{ matrix.node }}
|
||||
|
||||
- name: Install libreoffice
|
||||
run: |
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue