From 4350aece8195c9b0c6e75ce9f68ec0ae1f3b82d4 Mon Sep 17 00:00:00 2001 From: Augusto Date: Tue, 30 Apr 2024 21:46:19 +0200 Subject: [PATCH] Ad --- .github/workflows/release.yml | 37 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8bc1861..66027cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,22 +8,21 @@ on: - test-e2e-trial jobs: - e2e-tests: - needs: [unit-tests] - runs-on: self-hosted - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: 21 - - run: npm --prefix users/authservice install - - run: npm --prefix users/userservice install - - run: npm --prefix gatewayservice install - - run: npm --prefix historyservice install - - run: npm --prefix questionservice install - - run: npm --prefix roomservice install - - run: npm --prefix webapp install - - run: npm --prefix webapp run build - - run: xvfb-run --auto-servernum npm --prefix webapp run test:e2e - env : - CI : "" \ No newline at end of file + e2e-tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 21 + - run: npm --prefix users/authservice install + - run: npm --prefix users/userservice install + - run: npm --prefix gatewayservice install + - run: npm --prefix historyservice install + - run: npm --prefix questionservice install + - run: npm --prefix roomservice install + - run: npm --prefix webapp install + - run: npm --prefix webapp run build + - run: xvfb-run --auto-servernum npm --prefix webapp run test:e2e + env : + CI : ""