From d587f25849c49236d1272c296d96e8544710bdf0 Mon Sep 17 00:00:00 2001 From: Alan Plum Date: Thu, 1 Sep 2022 14:03:42 +0200 Subject: [PATCH] Run resilience-tests on GHA --- .github/workflows/tests.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6fdfa1eb3..a065475ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,6 +35,29 @@ jobs: TEST_ARANGODB_URL: http://arangodb:8529 CI: true + resilience: + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + node-version: [14, 16, 18] + arangodb-version: [3.8, 3.9] + + container: + image: node:${{ matrix.node-version }} + + steps: + - uses: actions/checkout@v2 + - run: apt-get update && apt-get install jq -y + - run: npm install -g npm@8 + - run: npm install + - run: npm test + env: + ARANGO_RELEASE: ${{ matrix.arangodb-version }} + RESILIENCE_DOCKER_IMAGE: arangodb:${{ matrix.arangodb-version }} + CI: true + web: runs-on: ubuntu-latest