chore(deps): bump zustand from 5.0.13 to 5.0.14 #81
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - refactor/waypaper-engine | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 25 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26" | |
| cache-dependency-path: daemon/go.sum | |
| - name: Install system build dependencies | |
| # The daemon's monitor package links libwayland-client via cgo. | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libwayland-dev | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run canonical CI checks | |
| run: pnpm run ci:check | |
| - name: Check wal-qt generated client is up-to-date | |
| # Regenerates client from the vendored spec and fails if the committed file differs. | |
| run: | | |
| cd daemon | |
| go generate ./internal/backend/walqt/walqtclient/... | |
| git diff --exit-code internal/backend/walqt/walqtclient/client.gen.go | |
| - name: Build documentation site | |
| run: pnpm run docs:build | |
| env: | |
| VITEPRESS_BASE: /Waypaper-Engine/ |