Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# GitHub automation

[Back to the repository README](../README.md).

- [`workflows/`](workflows/) contains the maintained CI definition.
6 changes: 6 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Workflows

[Back to the repository README](../../README.md).

`ci.yml` runs formatting, Clippy, unit and integration tests, package-content
checks, and a locked install smoke test for the `coatcheck` binary.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,8 @@ jobs:
- run: cargo fmt --check
- run: cargo clippy --all-targets --all-features -- -D warnings
- run: cargo test --all-targets --all-features
- run: cargo package
- run: cargo package --locked
- run: cargo package --list | grep -Fx Cargo.lock
- run: cargo package --list | grep -Fx templates/Coatcheck.toml
- run: cargo install --path . --locked --root target/install-smoke
- run: target/install-smoke/bin/coatcheck --help
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
/.coatcheck
.DS_Store
.env
.env.*
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.2.0

- Add additive, Serde-compatible manifest-v1 and frame-v1 contracts.
- Add validated `Coatcheck.toml` host and test configuration.
- Ship an installable `coatcheck` binary with `init`, `doctor`, `dev`, and
`test` commands.
- Generate explicit Playwright and Axe cases from the live host manifest.
- Install project-local Bun dependencies and Playwright Chromium.
- Gate on semantic, browser-error, and accessibility checks.
- Write PNG, DOM, Axe, console, JSON, HTML, trace, and Markdown review
artifacts without pixel-baseline comparisons.

## 0.1.0

- Define stories, typed args, and control kinds.
Expand Down
Loading
Loading