Skip to content

Commit

Permalink
Merge pull request #467 from ONLYOFFICE/fix/git-action-ignoring-tags-…
Browse files Browse the repository at this point in the history
…release-v8.1.0-branch

[fix] Git actions now ignoring tags
  • Loading branch information
konovalovsergey authored Mar 31, 2024
2 parents f02884b + e6c59a4 commit de74848
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/damengDatabaseTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Dameng database tests
on:
push:
branches:
- '**'
paths:
- 'DocService/sources/databaseConnectors/baseConnector.js'
- 'DocService/sources/databaseConnectors/damengConnector.js'
Expand Down Expand Up @@ -45,4 +47,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 changes: 3 additions & 1 deletion .github/workflows/mssqlDatabaseTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: MSSQL database tests
on:
push:
branches:
- '**'
paths:
- 'DocService/sources/databaseConnectors/baseConnector.js'
- 'DocService/sources/databaseConnectors/mssqlConnector.js'
Expand Down Expand Up @@ -45,4 +47,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"
4 changes: 3 additions & 1 deletion .github/workflows/mysqlDatabaseTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: MYSQL database tests
on:
push:
branches:
- '**'
paths:
- 'DocService/sources/databaseConnectors/baseConnector.js'
- 'DocService/sources/databaseConnectors/mysqlConnector.js'
Expand Down Expand Up @@ -42,4 +44,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 changes: 3 additions & 1 deletion .github/workflows/oracleDatabaseTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Oracle database tests
on:
push:
branches:
- '**'
paths:
- 'DocService/sources/databaseConnectors/baseConnector.js'
- 'DocService/sources/databaseConnectors/oracleConnector.js'
Expand Down Expand Up @@ -45,4 +47,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 changes: 3 additions & 1 deletion .github/workflows/postgreDatabaseTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Postgre database tests
on:
push:
branches:
- '**'
paths:
- 'DocService/sources/databaseConnectors/baseConnector.js'
- 'DocService/sources/databaseConnectors/postgreConnector.js'
Expand Down Expand Up @@ -42,4 +44,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 changes: 3 additions & 1 deletion .github/workflows/unitTests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Service unit tests
on:
push:
branches:
- '**'
paths:
- '**.js'
- '!tests/integration/**'
Expand Down Expand Up @@ -31,4 +33,4 @@ jobs:
npm --prefix DocService ci
- name: Run Jest
run: npm run "unit tests"
run: npm run "unit tests"

0 comments on commit de74848

Please sign in to comment.