Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 879 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (22 loc) · 879 Bytes

Contributing

Bug reports, issues, feature requests, and other contributions are welcome. If you find a demonstrable problem that is caused by the REANA code, please:

  1. Search for already reported problems.
  2. Check if the issue has been fixed or is still reproducible on the latest master branch.
  3. Create an issue, ideally with a test case.

If you create a pull request fixing a bug or implementing a feature, you can run the tests to ensure that everything is operating correctly:

$ ./run-tests.sh

Each pull request should preserve or increase code coverage.

We are using Prettier to format our code. In order to use it before a pull request:

  1. Install the package from NPM

    $ npm install prettier
  2. Style your code

    $ prettier --write **/*.js