Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 1022 Bytes

CONTRIBUTING.md

File metadata and controls

15 lines (12 loc) · 1022 Bytes

Contributing

Thank you for your interest in contributing to SKY UX!

For the suggested workflow, coding conventions, and additional guidance, please see our contribution guidelines.

  • npm run coverage Runs our unit spec tests, saving coverage to the coverage/ directory. This contains the following sub tasks:
    • npm run coverage:builder which tests the nodejs/builder code and places coverage in coverage/builder.
    • npm run coverage:runtime which tests the runtime components and places coverage in coverage/runtime.
    • npm run coverage:src-app which tests the src/app components and places coverage in coverage/src-app.
  • npm run e2e Runs the defined end-to-end tests.
  • npm run jscs Runs this code against the jscs linter.
  • npm run jshint Runs this code against the jshint linter.
  • npm run lint Runs the jscs and jshint commands.
  • npm run test Runs ALL test commands: lint, coverage, and e2e.