ember-cli: Your names in package.json and index.js should match. The addon in /home/runner/work/cp-validations/cp-validations currently have '@ember-intl/cp-validations' in package.json and 'ember-intl-cp-validations' in index.js.
Until ember-cli v3.9, this error can be disabled by setting env variable EMBER_CLI_IGNORE_ADDON_NAME_MISMATCH to "true". For more information about this workaround, see: https://github.com/ember-cli/ember-cli/pull/7950.
Before:
import ValidatorsMessages from 'ember-intl-cp-validations/validators/messages';
After:
import ValidatorsMessages from '@ember-intl/cp-validations/validators/messages';
The following error fails the tests in #87
Before:
After:
Ref https://github.com/ember-intl/cp-validations/issues/85