diff --git a/.github/workflows/test_all.yml b/.github/workflows/test_all.yml index 59ca5fa..e9603b3 100644 --- a/.github/workflows/test_all.yml +++ b/.github/workflows/test_all.yml @@ -221,27 +221,27 @@ jobs: category: "/language:${{matrix.language}}" end-to-end-tests: - name: End to End Tests - timeout-minutes: 60 - runs-on: ubuntu-latest - needs: [integration-tests] - - strategy: - matrix: - app: ['UserWebApp', 'AdminWebApp'] - - steps: - - uses: actions/checkout@v3 - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: 18 - - - name: Install Dependencies - run: | - npm ci - npm run build - npx playwright install --with-deps - - name: Run Playwright tests - run: npx playwright test - working-directory: Services/${{ matrix.app }} + name: End to End Tests + timeout-minutes: 60 + runs-on: ubuntu-latest + needs: [integration-tests] + + strategy: + matrix: + app: ['UserWebApp', 'AdminWebApp'] + + steps: + - uses: actions/checkout@v3 + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 18 + + - name: Install Dependencies + run: | + npm ci + npm run build + npx playwright install --with-deps + - name: Run Playwright tests + run: npx playwright test + working-directory: Services/${{ matrix.app }}