Skip to content

Commit

Permalink
Update RabbitMQ version intests
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewscwei committed Nov 2, 2023
1 parent 29387ec commit a85edfa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: andrewscwei/workflows/.github/workflows/node-build.yml@master
with:
artifacts-path: build/
service-image: rabbitmq:3.9.25-management
service-image: rabbitmq:3.12.7-management
service-port: 5672:5672
deploy:
name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Build
uses: andrewscwei/workflows/.github/workflows/node-build.yml@master
with:
service-image: rabbitmq:3.9.25-management
service-image: rabbitmq:3.12.7-management
service-port: 5672:5672
notify:
name: Notify
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ services:
- "mq"
mq:
container_name: "mq"
image: "rabbitmq:3.9.25-management"
image: "rabbitmq:3.12.7-management"
ports:
- "5672:5672"
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"prebuild": "npm run lint",
"build": "npm run clean && tsc",
"test": "mocha --config .mocharc \"tests/$npm_config_files\"",
"test:unit": "concurrently --kill-others -n mq,module --hide mq -c white,cyan \"docker run --rm -p 5672:5672 rabbitmq:3.9.25\" \"cross-env DEBUG=message-broker* mocha --config .mocharc \"src/$npm_config_files\"\"",
"svc": "docker run --rm -p 5672:5672 rabbitmq:3.9.25",
"test:unit": "concurrently --kill-others -n mq,module --hide mq -c white,cyan \"docker run --rm -p 5672:5672 rabbitmq:3.12.7\" \"cross-env DEBUG=message-broker* mocha --config .mocharc \"src/$npm_config_files\"\"",
"svc": "docker run --rm -p 5672:5672 rabbitmq:3.12.7",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"ship:test": "docker-compose -f docker-compose.test.yml up --build --abort-on-container-exit"
Expand Down

0 comments on commit a85edfa

Please sign in to comment.