We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac20b31 commit f4e0d2aCopy full SHA for f4e0d2a
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,28 @@
1
+# https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/customize-the-agent-environment
2
+
3
+name: "Copilot Setup Steps"
4
5
+on:
6
+ workflow_dispatch:
7
+ push:
8
+ paths:
9
+ - .github/workflows/copilot-setup-steps.yml
10
+ pull_request:
11
12
13
14
+jobs:
15
+ copilot-setup-steps:
16
+ runs-on: ubuntu-latest
17
18
+ permissions:
19
+ contents: read
20
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - uses: actions/setup-node@v4
24
+ with:
25
+ node-version: 22
26
+ - uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
27
+ - run: pnpm i
28
+ - run: pnpm exec playwright install chromium
0 commit comments