Skip to content

chore: add copilot instructions and agent setup steps workflow #4

chore: add copilot instructions and agent setup steps workflow

chore: add copilot instructions and agent setup steps workflow #4

name: 'Copilot Setup Steps'
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: 'npm'
- name: Install JavaScript dependencies
run: npm ci