We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8966e2 commit 014e08aCopy full SHA for 014e08a
2 files changed
flake.nix
@@ -144,9 +144,7 @@
144
cd "$PLUGIN_DIR"
145
cp -a "${composerVendorDev}/vendor" .
146
cp -r --no-preserve=mode "$src"/* .
147
- just _lint _validate _phpcs
148
- # Run directly because composer swallows the exit code
149
- php vendor/bin/rector --debug --dry-run
+ just _check_no_test
150
'';
151
};
152
in
justfile
@@ -21,7 +21,9 @@ build-wp-org:
21
nix build .#pluginWpOrg
22
23
# Run tests and other checks
24
-check: _lint _validate _phpcs && test
+check: _check_no_test test
25
+
26
+_check_no_test: _lint _validate _phpcs
27
php ./vendor/bin/rector --debug --dry-run
28
29
# Run development server
0 commit comments