Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 985 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (22 loc) · 985 Bytes

How To Contribute

Installation

  • git clone <repository-url>
  • cd my-addon
  • pnpm install

Linting

  • pnpm run lint
  • pnpm run lint:fix

Running tests

  • pnpm test – Runs the test suite on the current Ember version

Running the test application

For more information on using ember-cli, visit https://cli.emberjs.com/release/.

Add additional fields to GhUser Component

  • Add new model fields to app/models/gh-user.js
  • Add new serializer fields to app/serializers/gh-user.js
    • Use fake data from public/api/gh-users/michaelchadwick.json
  • Pass new fields into <Debug> component in app/templates/application.hbs
  • Add those fields to <GhUser> component in app/components/debug.hbs
    • (Optional) Add new translations to /translations/* files
  • Add those fields to app/components/gh-user.hbs template