GitHub Actions change attempt 5/4728139432

This commit is contained in:
Sam Rose 2024-11-07 10:40:02 +00:00
parent a9216bf653
commit ee20f2eba8
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -150,7 +150,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
datasource: [mssql, mysql, postgres, mongo, mariadb, oracle]
datasource: [mssql, mysql, postgres, mongodb, mariadb, oracle]
steps:
- name: Checkout repo
uses: actions/checkout@v4
@ -202,7 +202,7 @@ jobs:
AFFECTED=$(yarn --silent nx show projects --affected -t test --base=${{ env.NX_BASE_BRANCH }} -p @budibase/server)
if [ -n "$AFFECTED" ]; then
cd packages/server
yarn test --filter ./src/tests/filters/datasource-tests.js
yarn test --filter ./src/tests/filters/datasource-tests.js --passWithNoTests
else
echo "No affected tests to run"
fi
@ -241,7 +241,7 @@ jobs:
AFFECTED=$(yarn --silent nx show projects --affected -t test --base=${{ env.NX_BASE_BRANCH }} -p @budibase/server)
if [ -n "$AFFECTED" ]; then
cd packages/server
yarn test --filter ./src/tests/filters/non-datasource-tests.js
yarn test --filter ./src/tests/filters/datasource-tests.js --passWithNoTests
else
echo "No affected tests to run"
fi