build(deps): bump react-dom from 19.2.6 to 19.2.7 in /dashboard #58
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "dashboard ci" | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - 'dashboard/**' | |
| jobs: | |
| tests: | |
| # Self-hosted runner on Raspberry Pi 5 — see ./github-runner/README.md | |
| runs-on: [self-hosted, pi5] | |
| defaults: | |
| run: | |
| working-directory: dashboard | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 25 | |
| cache: npm | |
| cache-dependency-path: dashboard/package-lock.json | |
| - name: "Install dependencies" | |
| run: make install | |
| - name: "Install shellcheck" | |
| run: | | |
| if ! command -v shellcheck >/dev/null 2>&1; then | |
| sudo apt-get update && sudo apt-get install -y shellcheck | |
| fi | |
| working-directory: . | |
| - name: "Format check" | |
| run: make qa | |
| - name: "Build" | |
| run: make build |