Skip to content

Commit

Permalink
Fixed yml indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
DAQEM committed Jan 10, 2024
1 parent e51c31a commit f3b7524
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit f3b7524

Please sign in to comment.