mirror of
https://github.com/xtermjs/xterm.js.git
synced 2026-01-18 15:55:25 +00:00
33 lines
668 B
YAML
33 lines
668 B
YAML
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 22.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 22.x
|
|
cache: 'npm'
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Setup and run tsc
|
|
run: npm run setup
|
|
- name: Esbuild
|
|
run: npm run esbuild
|