Update images readme #9
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@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.26" | |
| cache-dependency-path: daemon/go.sum | |
| - 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 daemon/internal/backend/walqt/walqtclient/client.gen.go | |
| - name: Build documentation site | |
| run: pnpm run docs:build | |
| env: | |
| VITEPRESS_BASE: /Waypaper-Engine/ |