Add bulk folder deletion from the files grid (#26886) #58
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Blackbox Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - api/** | |
| - tests/blackbox/** | |
| - packages/** | |
| - package.json | |
| - pnpm-lock.yaml | |
| - .github/workflows/blackbox.yml | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: blackbox-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=6144 | |
| jobs: | |
| common: | |
| name: common (${{ matrix.redis-image }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| redis-image: | |
| - redis:6-alpine | |
| - valkey/valkey:8-alpine | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Prepare | |
| uses: ./.github/actions/prepare | |
| - name: Start services | |
| env: | |
| REDIS_IMAGE: ${{ matrix.redis-image }} | |
| run: | |
| docker compose -f tests/blackbox/docker-compose.yml up auth-saml redis minio minio-mc openldap -d --quiet-pull | |
| --wait | |
| - name: Run tests | |
| run: TEST_DB=sqlite3 pnpm run test:blackbox --project common | |
| db: | |
| name: ${{ matrix.vendor }} (${{ matrix.redis-image }}) | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| vendor: | |
| - sqlite3 | |
| - postgres | |
| - mysql | |
| - maria | |
| - mssql | |
| - oracle | |
| # - cockroachdb | |
| redis-image: | |
| - redis:6-alpine | |
| - valkey/valkey:8-alpine | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Prepare | |
| uses: ./.github/actions/prepare | |
| - name: Start database | |
| if: matrix.vendor != 'sqlite3' | |
| run: docker compose -f tests/blackbox/docker-compose.yml up ${{ matrix.vendor }} -d --quiet-pull --wait | |
| - name: MSSQL Set Compatibility Level | |
| if: matrix.vendor == 'mssql' | |
| run: | | |
| for i in {1..30} | |
| do | |
| docker exec blackbox-mssql-1 \ | |
| /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'Test@123' -C \ | |
| -Q "SELECT 1" && break | |
| sleep 2 | |
| done | |
| docker exec blackbox-mssql-1 \ | |
| /opt/mssql-tools18/bin/sqlcmd -S localhost -U SA -P 'Test@123' -C \ | |
| -Q "ALTER DATABASE model SET COMPATIBILITY_LEVEL = 150" \ | |
| -l 30 | |
| echo "MSSQL compatibility level set successfully" | |
| - name: Start services | |
| env: | |
| REDIS_IMAGE: ${{ matrix.redis-image }} | |
| run: docker compose -f tests/blackbox/docker-compose.yml up redis minio minio-mc -d --quiet-pull --wait | |
| - name: Run tests | |
| run: TEST_DB=${{ matrix.vendor }} pnpm run test:blackbox --project db |