Skip to content

Copilot Coding agent setup #169

Copilot Coding agent setup

Copilot Coding agent setup #169

name: "Copilot Coding agent setup"
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 20
- uses: oven-sh/setup-bun@v2.1.2
with:
bun-version: 1.3.3
- name: Cache turbo build setup
uses: actions/cache@v5
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Install
run: bun i
- name: Build
run: bun run build