Skip to content

Commit

Permalink
changed username to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
DAQEM committed Jan 10, 2024
1 parent c977f6a commit bdd781c
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,35 @@ jobs:
reporter: dotnet-trx
fail-on-error: true

end-to-end-tests:
name: End to End Tests
runs-on: ubuntu-latest
needs: [integration-tests]
timeout-minutes: 60

strategy:
fail-fast: true
matrix:
service: [ 'netmon-admin-web-app', 'netmon-user-web-app' ]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Docker Compose MySQL
run: docker-compose up -d --build netmon-mysql

- name: Docker Compose
run: docker-compose up -d --build

- name: Install dependencies
run: |
docker exec ${{matrix.service}} npm install vitest
docker exec ${{matrix.service}} npx playwright install --with-deps
- name: Run Tests
run: docker exec ${{matrix.service}} npx playwright test

codeql:
name: CodeQL
runs-on: ubuntu-latest
Expand Down Expand Up @@ -220,35 +249,6 @@ jobs:
with:
category: "/language:${{matrix.language}}"

end-to-end-tests:
name: End to End Tests
runs-on: ubuntu-latest
needs: [integration-tests]
timeout-minutes: 60

strategy:
fail-fast: true
matrix:
service: [ 'netmon-admin-web-app', 'netmon-user-web-app' ]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Docker Compose MySQL
run: docker-compose up -d --build netmon-mysql

- name: Docker Compose
run: docker-compose up -d --build

- name: Install dependencies
run: |
docker exec ${{matrix.service}} npm install vitest
docker exec ${{matrix.service}} npx playwright install --with-deps
- name: Run Tests
run: docker exec ${{matrix.service}} npx playwright test

deploy:
name: Deploy Docker Images
runs-on: ubuntu-latest
Expand All @@ -259,7 +259,7 @@ jobs:
- name: Log into Docker Hub
uses: docker/login-action@v2
with:
username: DAQEM
username: daqem
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
- name: Deploy Images
run: docker-compose push
Expand Down

0 comments on commit bdd781c

Please sign in to comment.