Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 928 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (25 loc) · 928 Bytes

Contribution Guide

Feel free to open issues here (https://github.com/stefafafan/psi-action/issues) or contributing with Pull Requests. When opening up Pull Requests, make sure you follow the following flow:

  1. Fork the repository from https://github.com/stefafafan/psi-action/fork
  2. Create your feature branch (e.g. git switch -c your-feature)
  3. Commit and push your changes.
  4. Make sure tests pass on your machine.

Tips on local development

Make sure you have the correct version of Node.js installed, as well as the dependencies.

$ npm install

Build and format.

$ npm run build && npm run format && npm run lint

Run the tests. These should pass.

$ npm test

Package for distribution.

$ npm package

Continuous Integration will fail if you do not push the diff from building and packaging.