From f2103094473714edd052f671afcae8d80e817897 Mon Sep 17 00:00:00 2001 From: GPad Date: Sat, 25 Jun 2022 12:22:40 +0200 Subject: [PATCH] Fix GA config --- .github/workflows/main.yml | 10 +++++----- README.md | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7add0a02..85750e91 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -5,9 +5,9 @@ name: Node.js CI on: push: - branches: [ $default-branch ] + branches: [ main ] pull_request: - branches: [ $default-branch ] + branches: [ main ] jobs: build: @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ services: @@ -32,11 +32,11 @@ jobs: - 15672:15672 - 1883:1883 - 61613:61613 - volumes: - - ./conf/enabled_plugins:/etc/rabbitmq/enabled_plugins steps: - uses: actions/checkout@v3 + - name: Enable RabbitMQ Plugins + run: docker exec ${{ job.services.rabbitmq.id }} rabbitmq-plugins enable rabbitmq_stream rabbitmq_stream_management - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: diff --git a/README.md b/README.md index 1680dfc6..dc71ab97 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ # RabbitMQ client for the stream protocol for Node.JS + +TODO