Skip to content

Commit c6aabf7

Browse files
authored
Updated to match current file
Updated to match current file
1 parent 82bd8a5 commit c6aabf7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/1-copilot-coding-agent.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050
# Set the permissions to the lowest permissions possible needed for *your steps*. Copilot will be given its own token for its operations.
5151
permissions:
52-
# 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.
53-
# If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
52+
# 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.
5453
contents: read
5554
steps:
5655
- name: Checkout code
@@ -77,6 +76,10 @@ jobs:
7776
- name: Install JavaScript dependencies
7877
working-directory: ./client
7978
run: npm ci
79+
80+
- name: Install Playwright
81+
working-directory: ./client
82+
run: npx playwright install
8083
```
8184
8285
It looks like any other GitHub workflow file, but it has a few key points:

0 commit comments

Comments
 (0)