mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-28 14:07:55 +00:00
Ahead of the 2026-06-02 forced-Node-24 deadline, upgrade the remaining javascript actions flagged in the workflow annotations: - actions/setup-python v5 → v6 - actions/setup-node v4 → v6 (skipping v5) - actions/cache v4 → v5 - actions/deploy-pages v4 → v5 - actions/upload-pages-artifact v3 → v5.0.0 upload-pages-artifact has no rolling @v5 major tag — only the specific v5.0.0 release — so it gets an explicit pin, same as astral-sh/setup-uv. Not touched: swatinem/rust-cache@v2 (still on v2 majors, not flagged), dtolnay/rust-toolchain@stable (composite), tauri-apps/tauri-action@v0 (composite), anthropics/claude-code-action@v1 (still latest major). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
38 lines
725 B
YAML
38 lines
725 B
YAML
name: Frontend CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'frontend/**'
|
|
- '.github/workflows/frontend.yml'
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- 'frontend/**'
|
|
- '.github/workflows/frontend.yml'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: frontend-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: frontend
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '22'
|
|
cache: 'npm'
|
|
cache-dependency-path: frontend/package-lock.json
|
|
|
|
- run: npm ci
|
|
- run: npx tsc --noEmit
|
|
- run: npm run build
|