a9c16febf4
* test(skills): align sandbox cache tests with readonly behavior * ci(release): enforce core quality gate before publish * ci: enforce locked dependency installs in workflows * security: remove curl-pipe-shell installs * chore: align project python baseline to 3.12 * ci(dashboard): add explicit typecheck gate * chore(pre-commit): align ruff hook version with project * ci(codeql): add javascript-typescript analysis * chore(ruff): defer py312 migration lint rules * fix: resolve ruff violations without new ignores * fix: resolve ASYNC230 and ASYNC240 without ignores * fix(auth): replace utcnow with timezone-aware UTC now * fix: avoid blocking file read in file_to_base64
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
name: AstrBot Dashboard CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 10.28.2
|
|
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '24.13.0'
|
|
cache: "pnpm"
|
|
cache-dependency-path: dashboard/pnpm-lock.yaml
|
|
|
|
- name: Install and build
|
|
run: |
|
|
pnpm --dir dashboard install --frozen-lockfile
|
|
pnpm --dir dashboard run typecheck
|
|
pnpm --dir dashboard run build
|
|
|
|
- name: Inject Commit SHA
|
|
id: get_sha
|
|
run: |
|
|
echo "COMMIT_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
|
|
mkdir -p dashboard/dist/assets
|
|
echo $COMMIT_SHA > dashboard/dist/assets/version
|
|
cd dashboard
|
|
zip -r dist.zip dist
|
|
|
|
- name: Archive production artifacts
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: dist-without-markdown
|
|
path: |
|
|
dashboard/dist
|
|
!dist/**/*.md
|
|
|
|
- name: Create GitHub Release
|
|
if: github.event_name == 'push'
|
|
uses: ncipollo/release-action@v1
|
|
with:
|
|
tag: release-${{ github.sha }}
|
|
owner: AstrBotDevs
|
|
repo: astrbot-release-harbour
|
|
body: "Automated release from commit ${{ github.sha }}"
|
|
token: ${{ secrets.ASTRBOT_HARBOUR_TOKEN }}
|
|
artifacts: "dashboard/dist.zip"
|