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
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ fix: tools/rta@${RUN_THAT_APP_VERSION} # auto-corrects all issues
cargo +nightly fmt
cargo +nightly fix --allow-dirty
tools/rta ghokin fmt replace features/
tools/rta cucumber-sort format

help: # shows all available Make commands
cat Makefile | grep '^[^ ]*:' | grep -v '.PHONY' | grep -v '.SILENT' | grep -v help | sed 's/:.*#/#/' | column -s "#" -t
Expand All @@ -31,6 +32,7 @@ install: # compiles and installs the binary on this computer
lint: tools/rta@${RUN_THAT_APP_VERSION} # runs all linters
cargo clippy --all-targets --all-features
tools/rta actionlint
tools/rta cucumber-sort check

setup: # prepares this codebase for development
rustup component add clippy
Expand Down
19 changes: 19 additions & 0 deletions cucumber-sort.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"include": ["features/**/*.feature"],
"exclude": [],
"record": true,
"fail-fast": true,
"steps": [
"^file \".*\" with content$",
"^Contest is running$",
"^I run \".*\"$",
[
"^receiving the command ",
"^it prints$"
],
"^it exits with this output$",
"^it fails with this output$",
"^it creates file \".*\" with content$",
"^the server stops running$"
]
}
1 change: 1 addition & 0 deletions run-that-app
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
actionlint 1.7.7
cucumber-sort 0.1.0
dprint 0.50.2
ghokin 3.8.1
node 24.9.0
Expand Down