geisha/.forgejo/workflows/check.yml
Spacebot a1f1bd31e8
All checks were successful
Astro Check / astro-check (push) Successful in 1m21s
Astro Check / astro-check (pull_request) Successful in 1m20s
Update actions/checkout action to v7
2026-07-18 21:01:56 +00:00

23 lines
No EOL
511 B
YAML

name: Astro Check
on: [push, pull_request]
jobs:
astro-check:
runs-on: debian-trixie
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Copy build-config
run: cp .ci-scripts/build-config.json ./build-config.json
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run Astro check
run: bun --silent astro check || true