Skip to content

chore(deps): bump actions/checkout from 6 to 7 (#226) #78

chore(deps): bump actions/checkout from 6 to 7 (#226)

chore(deps): bump actions/checkout from 6 to 7 (#226) #78

Workflow file for this run

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/