try a different approach

This commit is contained in:
Greg Gauthier 2024-02-27 12:17:59 +00:00
parent dc2e5621a5
commit ff7aa682f6

View File

@ -16,14 +16,14 @@ jobs:
- name: Where Am I - name: Where Am I
shell: bash shell: bash
working-directory: ${{runner.workspace}} working-directory: ${{runner.workspace}}
run: whoami && pwd && ls -l && env run: pwd && ls -l && env
- name: Start Web - name: Start Web
shell: bash shell: bash
working-directory: ${{runner.workspace}}/MyWebApp working-directory: ${{runner.workspace}}
run: nohub dotnet run & run: cd MyWebApp && nohub dotnet run &
- name: Run Playwright Tests - name: Run Playwright Tests
shell: bash shell: bash
working-directory: ${{runner.workspace}}/PlaywriteTests working-directory: ${{runner.workspace}}
run: dotnet test run: cd PlawwrightTests && dotnet test