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 : ""