Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ jobs:
- name: Install JavaScript dependencies
working-directory: ./client
run: npm ci

- name: Install Playwright
working-directory: ./client
run: npx playwright install
7 changes: 5 additions & 2 deletions docs/1-copilot-coding-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ jobs:
runs-on: ubuntu-latest
# Set the permissions to the lowest permissions possible needed for *your steps*. Copilot will be given its own token for its operations.
permissions:
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission.
# If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
contents: read
steps:
- name: Checkout code
Expand All @@ -77,6 +76,10 @@ jobs:
- name: Install JavaScript dependencies
working-directory: ./client
run: npm ci

- name: Install Playwright
working-directory: ./client
run: npx playwright install
```

It looks like any other GitHub workflow file, but it has a few key points:
Expand Down