Skip to content
Merged

#14 #15

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,17 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x, 21.x, 22.x, 23.x]
node-version: [18.x, 20.x, 22.x, 24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

services:
rabbitmq:
image: rabbitmq:4.0.9-management
image: rabbitmq:4.1.1-management
options: --hostname test-node --name test-node
env:
RABBITMQ_HOSTNAME: "test-node"
RABBITMQ_DEFAULT_USER: "test-user"
RABBITMQ_DEFAULT_PASS: "test-password"
volumes:
# these directories will be empty until checkout, but they will be
# populated by the time we restart the service
- ${{ github.workspace }}/conf:/etc/rabbitmq
ports:
- 5672:5672
- 15672:15672
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 22.15.0
nodejs 22.16.0
1 change: 0 additions & 1 deletion conf/enabled_plugins

This file was deleted.

5 changes: 0 additions & 5 deletions conf/rabbitmq.conf

This file was deleted.

8 changes: 3 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
rabbitmq-rhea:
image: rabbitmq:4.0.9-management
container_name: rabbitmq-rhea
rabbitmq-js-client:
image: rabbitmq:4.1.1-management
container_name: rabbitmq-js-client
restart: unless-stopped
hostname: "rabbitmq"
ports:
Expand All @@ -10,5 +10,3 @@ services:
environment:
RABBITMQ_DEFAULT_USER: "rabbit"
RABBITMQ_DEFAULT_PASS: "rabbit"
volumes:
- ./conf/:/etc/rabbitmq/
Loading