We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ci task depends on ['default', 'coveralls']. Default executes test:
ci
['default', 'coveralls']
gulp.task('default', function(callback) { return runSequence( 'lint', 'build', 'test', callback ); });
Coveralls depends on test:
test
gulp.task('coveralls', ['test'], function (done) { gulp.src('build/reports/coverage/lcov/report-lcovonly.txt') .pipe(coveralls()); });
for reference: aurelia-ui-toolkits/aurelia-materialize-bridge#85
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
ci
task depends on['default', 'coveralls']
. Default executes test:Coveralls depends on
test
:for reference: aurelia-ui-toolkits/aurelia-materialize-bridge#85
The text was updated successfully, but these errors were encountered: