mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-06 03:26:44 +03:00
52 lines
1.1 KiB
YAML
52 lines
1.1 KiB
YAML
name: Astro Build and Test
|
|
|
|
on:
|
|
push:
|
|
branches: [ '*' ]
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'docs/**'
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'docs/**'
|
|
|
|
jobs:
|
|
build-and-test:
|
|
name: Build and Test Astro Project
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Bun
|
|
uses: oven-sh/setup-bun@v1
|
|
with:
|
|
bun-version: '1.2.9'
|
|
|
|
- name: Check lockfile and install dependencies
|
|
run: |
|
|
# Check if bun.lock exists, if not check for bun.lockb
|
|
if [ -f "bun.lock" ]; then
|
|
echo "Using existing bun.lock file"
|
|
elif [ -f "bun.lockb" ]; then
|
|
echo "Found bun.lockb, creating symlink to bun.lock"
|
|
ln -s bun.lockb bun.lock
|
|
fi
|
|
bun install
|
|
|
|
- name: Run tests
|
|
run: bunx vitest run
|
|
|
|
- name: Build Astro project
|
|
run: bunx astro build
|
|
|
|
- name: Upload build artifacts
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: astro-build
|
|
path: dist/
|
|
retention-days: 7
|