mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 08:01:26 +00:00
a28a68258c
* feat(fixtures): add cli-sync workspace snapshot/load scripts * fix(fixtures): address review nits (env var password, mktemp, dead refs) * fix(fixtures): address CI review (SIGPIPE, JSON escaping, doc/code drift)
20 lines
356 B
YAML
20 lines
356 B
YAML
name: Check fixture is empty
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "fixtures/**"
|
|
pull_request:
|
|
paths:
|
|
- "fixtures/**"
|
|
|
|
jobs:
|
|
check-empty-fixture:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Ensure fixtures/cli-sync/ has no committed snapshot
|
|
run: bash fixtures/check-empty.sh
|