Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HOME=/root to container samples in docs #27832

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/src/ci-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@ jobs:
run: npm ci
- name: Run your tests
run: npx playwright test
env:
HOME: /root
```

```yml python title=".github/workflows/playwright.yml"
Expand Down Expand Up @@ -217,6 +219,8 @@ jobs:
pip install -e .
- name: Run your tests
run: pytest
env:
HOME: /root
```

```yml java title=".github/workflows/playwright.yml"
Expand All @@ -242,6 +246,8 @@ jobs:
run: mvn -B install -D skipTests --no-transfer-progress
- name: Run tests
run: mvn test
env:
HOME: /root
```

```yml csharp title=".github/workflows/playwright.yml"
Expand All @@ -266,6 +272,8 @@ jobs:
- run: dotnet build
- name: Run your tests
run: dotnet test
env:
HOME: /root
```

### On deployment
Expand Down