diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/dependabot.yml | 4 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9e1c7682..82dc1ec6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -19,3 +19,7 @@ updates: directory: "/" schedule: interval: "weekly" +- package-ecosystem: "docker" + directory: "/vnext/server" + schedule: + interval: "weekly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c83dec6..9c5d814b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,7 @@ on: pull_request: push: branches: [master] + workflow_dispatch: concurrency: group: ${{ github.head_ref || github.ref }} @@ -12,7 +13,7 @@ concurrency: jobs: current: runs-on: self-hosted - timeout-minutes: 15 + timeout-minutes: 25 services: postgres: image: postgres @@ -32,7 +33,7 @@ jobs: MARIADB_ROOT_PASSWORD: secret options: --health-cmd="mysqladmin ping" --health-interval=10s --health-retries=3 --health-timeout=5s --health-start-period=15s sqlserver: - image: mcr.microsoft.com/mssql/server:2022-latest + image: mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04 ports: - 1433:1433 options: --health-cmd="/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P \"$MSSQL_SA_PASSWORD\" -Q \"SELECT 1\"" --health-interval=10s --health-retries=3 --health-timeout=5s --health-start-period=15s @@ -56,6 +57,7 @@ jobs: - name: Run tests (H2) run: ./mvnw -Pdefault clean package - name: Run tests (SQLite) + if: false run: ./mvnw -Psqlite clean package - name: Run tests (PostgreSQL) run: ./mvnw -Ppostgres clean package @@ -77,7 +79,7 @@ jobs: with: node-version: "18" - run: npm ci - - run: npm run vnext:test + - run: npm run test - run: npm run vnext:lint - run: npm run vnext:build - run: npm run vnext:build:ssr |