Skip to content

Commit 424637c

Browse files
committed
Improve welcome comment
1 parent 43f6f95 commit 424637c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/reusable-welcome-new-contributors.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,24 @@ jobs:
3030
Thanks for opening this pull request! Please check out our [contributing guidelines](https://make.wordpress.org/cli/handbook/contributions/contributing/). We appreciate you taking the initiative to contribute to this project.
3131
3232
Contributing isn't limited to just code. We encourage you to contribute in the way that best fits your abilities, by writing tutorials, giving a demo at your local meetup, helping other users with their support questions, or revising our documentation.
33+
34+
Here are some useful Composer commands to get you started:
35+
36+
* `composer install`: Install dependencies.
37+
* `composer test`: Run the full test suite.
38+
* `composer phpcs`: Check for code style violations.
39+
* `composer phpcbf`: Automatically fix code style violations.
40+
* `composer phpunit`: Run unit tests.
41+
* `composer behat`: Run behavior-driven tests.
42+
43+
To run a single Behat test, you can use the following command:
44+
45+
```bash
46+
# Run all tests in a single file
47+
composer behat features/some-feature.feature
48+
49+
# Run only a specific scenario (where 123 is the line number of the "Scenario:" title)
50+
composer behat features/some-feature.feature:123
51+
```
52+
53+
You can find a list of all available Behat steps in our [handbook](https://make.wordpress.org/cli/handbook/references/behat-steps/).

0 commit comments

Comments
 (0)