From a88aa92d9d3fa3edb39e71b0ec7a98b9ba46fe12 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Tue, 20 May 2025 11:57:23 +0200 Subject: [PATCH] chore: add copilot-setup-steps (#36013) --- .github/workflows/copilot-setup-steps.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/copilot-setup-steps.yml diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml new file mode 100644 index 0000000000..54cf652ae2 --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yml @@ -0,0 +1,17 @@ +name: "Copilot Setup Steps" +on: workflow_dispatch +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + + permissions: + contents: read + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "22" + - run: npm ci + - run: npm run build + - run: npx playwright install --with-deps