Skip to content

Commit

Permalink
Merge pull request #13 from commercetools/leungkinghin/change-npm-com…
Browse files Browse the repository at this point in the history
…mand

Change NPM commands in package.json
  • Loading branch information
leungkinghin-ct authored Sep 15, 2023
2 parents f8f136d + 2fbacb2 commit 76cfa88
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: npm run lint && npm run prettier

- name: Execute integration test
run: npm run test
run: npm run test:ci

build-full-ingestion:
name: Build the application for full-ingestion
Expand Down Expand Up @@ -64,4 +64,4 @@ jobs:
run: npm run lint && npm run prettier

- name: Execute integration test
run: npm run test
run: npm run test:ci
4 changes: 2 additions & 2 deletions full-ingestion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start:dev": "node_modules/.bin/nodemon -q src/index.js",
"lint": "node_modules/.bin/eslint src --ext .js",
"prettier": "node_modules/.bin/prettier --write '**/*.{js,ts}'",
"test": "node_modules/.bin/jest --config jest.config.cjs",
"test:watch": "node_modules/.bin/jest --watch"
"test": "echo Comment: It is npm command dedicated for running test in connect service",
"test:ci": "node_modules/.bin/jest --config jest.config.cjs"
},
"author": "",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions incremental-updater/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"start:dev": "node_modules/.bin/nodemon -q src/index.js",
"lint": "node_modules/.bin/eslint src --ext .js",
"prettier": "node_modules/.bin/prettier --write '**/*.{js,ts}'",
"test": "node_modules/.bin/jest --config jest.config.cjs",
"test:watch": "node_modules/.bin/jest --watch",
"test": "echo Comment: It is npm command dedicated for running test in connect service",
"test:ci": "node_modules/.bin/jest --config jest.config.cjs",
"connector:post-deploy": "node src/connectors/post-deploy.js",
"connector:pre-undeploy": "node src/connectors/pre-undeploy.js"
},
Expand Down

0 comments on commit 76cfa88

Please sign in to comment.