Skip to content
New issue

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

Use ckeditor5-dev-ci-notify-travis-status script and remove ckeditor5-dev-env #352

Merged
merged 2 commits into from Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
node_modules/
coverage/
dist/
.idea
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -11,10 +11,14 @@ cache:
- node_modules
before_install:
- export COVERALLS_SERVICE_JOB_ID=$( TRAVIS_JOB_ID )
- export START_TIME=$( date +%s )
install:
- npm install
script:
- npm run lint
- npm run build
- npm run coverage
- if [[ $TRAVIS_TEST_RESULT -eq 0 ]]; then cat coverage/lcov.info | ./node_modules/.bin/coveralls; fi
after_script:
- export END_TIME=$( date +%s )
- ckeditor5-dev-ci-notify-travis-status
6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -23,8 +23,10 @@
"@babel/core": "^7.10.5",
"@babel/preset-react": "^7.10.4",
"@ckeditor/ckeditor5-build-classic": "^34.1.0",
"@ckeditor/ckeditor5-dev-env": "^30.1.5",
"@ckeditor/ckeditor5-dev-utils": "^30.1.5",
"@ckeditor/ckeditor5-dev-bump-year": "^32.0.1",
"@ckeditor/ckeditor5-dev-ci": "^32.0.1",
"@ckeditor/ckeditor5-dev-release-tools": "^32.0.1",
"@ckeditor/ckeditor5-dev-utils": "^32.0.1",
"@ckeditor/ckeditor5-utils": "^34.1.0",
"@ckeditor/ckeditor5-watchdog": "^34.1.0",
"babel-eslint": "^10.1.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-version.js
Expand Up @@ -7,7 +7,7 @@

'use strict';

require( '@ckeditor/ckeditor5-dev-env' )
require( '@ckeditor/ckeditor5-dev-release-tools' )
.bumpVersions( {
cwd: process.cwd(),
packages: null,
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-year.js
Expand Up @@ -17,7 +17,7 @@ git commit -am "Internal: Bumped the year." && git push

*/

require( '@ckeditor/ckeditor5-dev-env' )
require( '@ckeditor/ckeditor5-dev-bump-year' )
.bumpYear( {
cwd: process.cwd(),
globPatterns: [
Expand Down
2 changes: 1 addition & 1 deletion scripts/changelog.js
Expand Up @@ -13,4 +13,4 @@
* Scripts for generating the changelog before starting the release process.
*/

require( '@ckeditor/ckeditor5-dev-env' ).generateChangelogForSinglePackage();
require( '@ckeditor/ckeditor5-dev-release-tools' ).generateChangelogForSinglePackage();
2 changes: 1 addition & 1 deletion scripts/publish.js
Expand Up @@ -7,7 +7,7 @@

'use strict';

require( '@ckeditor/ckeditor5-dev-env' )
require( '@ckeditor/ckeditor5-dev-release-tools' )
.releaseSubRepositories( {
cwd: process.cwd(),
packages: null,
Expand Down