mirror of
https://github.com/appwrite/console.git
synced 2026-04-07 19:17:46 +00:00
569eded47c
update: merge `main`.
28 lines
763 B
YAML
28 lines
763 B
YAML
name: Copilot Setup Steps
|
|
|
|
# Automatically run the setup steps when they are changed to allow for easy validation, and
|
|
# allow manual testing through the repository's "Actions" tab
|
|
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:
|
|
- uses: actions/checkout@v5
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v2
|
|
with:
|
|
bun-version: 1.3.8
|
|
|
|
- name: Install dependencies
|
|
run: bun install --frozen-lockfile
|