Merge pull request #5359 from Tyriar/tyriar/copilot_steps

Add copilot setup steps
This commit is contained in:
Daniel Imms
2025-06-21 10:55:11 -07:00
committed by GitHub
+36
View File
@@ -0,0 +1,36 @@
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:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Setup and run tsc
run: yarn setup
- name: Esbuild
run: yarn esbuild