mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-02-10 18:05:07 +08:00
Merge remote-tracking branch 'remotes/origin/release/v8.1.0' into develop
# Conflicts: # Common/config/default.json # Common/sources/constants.js # DocService/sources/DocsCoServer.js
This commit is contained in:
4
.github/workflows/damengDatabaseTests.yml
vendored
4
.github/workflows/damengDatabaseTests.yml
vendored
@ -1,6 +1,8 @@
|
||||
name: Dameng database tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'tests/integration/databaseTests/**'
|
||||
- 'DocService/sources/databaseConnectors/baseConnector.js'
|
||||
@ -46,4 +48,4 @@ jobs:
|
||||
docker exec dameng bash -c "cat /createdb.sql | /opt/dmdbms/bin/disql SYSDBA/SYSDBA001:5236"
|
||||
|
||||
- name: Run Jest
|
||||
run: npm run "integration database tests"
|
||||
run: npm run "integration database tests"
|
||||
|
||||
4
.github/workflows/mssqlDatabaseTests.yml
vendored
4
.github/workflows/mssqlDatabaseTests.yml
vendored
@ -1,6 +1,8 @@
|
||||
name: MSSQL database tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'tests/integration/databaseTests/**'
|
||||
- 'DocService/sources/databaseConnectors/baseConnector.js'
|
||||
@ -46,4 +48,4 @@ jobs:
|
||||
docker exec mssql /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P onlYoff1ce -i /createdb.sql
|
||||
|
||||
- name: Run Jest
|
||||
run: npm run "integration database tests"
|
||||
run: npm run "integration database tests"
|
||||
|
||||
6
.github/workflows/mysqlDatabaseTests.yml
vendored
6
.github/workflows/mysqlDatabaseTests.yml
vendored
@ -1,6 +1,8 @@
|
||||
name: MYSQL database tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'tests/integration/databaseTests/**'
|
||||
- 'DocService/sources/databaseConnectors/baseConnector.js'
|
||||
@ -20,7 +22,7 @@ jobs:
|
||||
- name: Caching dependencies
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '14'
|
||||
node-version: '16'
|
||||
cache: 'npm'
|
||||
cache-dependency-path: |
|
||||
./npm-shrinkwrap.json
|
||||
@ -43,4 +45,4 @@ jobs:
|
||||
docker exec mysql mysql -h 127.0.0.1 -u root --password=onlyoffice -D onlyoffice -e 'source /createdb.sql'
|
||||
|
||||
- name: Run Jest
|
||||
run: npm run "integration database tests"
|
||||
run: npm run "integration database tests"
|
||||
|
||||
4
.github/workflows/oracleDatabaseTests.yml
vendored
4
.github/workflows/oracleDatabaseTests.yml
vendored
@ -1,6 +1,8 @@
|
||||
name: Oracle database tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'tests/integration/databaseTests/**'
|
||||
- 'DocService/sources/databaseConnectors/baseConnector.js'
|
||||
@ -46,4 +48,4 @@ jobs:
|
||||
docker exec oracle sqlplus -s onlyoffice/onlyoffice@//localhost/xepdb1 @/createdb.sql
|
||||
|
||||
- name: Run Jest
|
||||
run: npm run "integration database tests"
|
||||
run: npm run "integration database tests"
|
||||
|
||||
4
.github/workflows/postgreDatabaseTests.yml
vendored
4
.github/workflows/postgreDatabaseTests.yml
vendored
@ -1,6 +1,8 @@
|
||||
name: Postgre database tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- 'tests/integration/databaseTests/**'
|
||||
- 'DocService/sources/databaseConnectors/baseConnector.js'
|
||||
@ -43,4 +45,4 @@ jobs:
|
||||
docker exec postgres psql -d onlyoffice -U onlyoffice -a -f /createdb.sql
|
||||
|
||||
- name: Run Jest
|
||||
run: npm run "integration database tests"
|
||||
run: npm run "integration database tests"
|
||||
|
||||
4
.github/workflows/unitTests.yml
vendored
4
.github/workflows/unitTests.yml
vendored
@ -1,6 +1,8 @@
|
||||
name: Service unit tests
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
paths:
|
||||
- '**.js'
|
||||
- '!tests/integration/**'
|
||||
@ -31,4 +33,4 @@ jobs:
|
||||
npm --prefix DocService ci
|
||||
|
||||
- name: Run Jest
|
||||
run: npm run "unit tests"
|
||||
run: npm run "unit tests"
|
||||
|
||||
Reference in New Issue
Block a user