23 lines
No EOL
511 B
YAML
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 |