Correctly handle scenario when subscriptionArn is not passed #1609
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| general: | |
| strategy: | |
| matrix: | |
| node-version: [20.x, 22.x, 24.x] | |
| package-name: [ | |
| '@message-queue-toolkit/amqp', | |
| '@message-queue-toolkit/core', | |
| '@message-queue-toolkit/metrics', | |
| '@message-queue-toolkit/outbox-core', | |
| '@message-queue-toolkit/redis-message-deduplication-store', | |
| '@message-queue-toolkit/s3-payload-store', | |
| '@message-queue-toolkit/schemas', | |
| '@message-queue-toolkit/sns', | |
| '@message-queue-toolkit/sqs', | |
| '@message-queue-toolkit/gcp-pubsub', | |
| '@message-queue-toolkit/gcs-payload-store' | |
| ] | |
| uses: ./.github/workflows/ci.common.yml | |
| with: | |
| node_version: ${{ matrix.node-version }} | |
| package_name: ${{ matrix.package-name }} | |
| kafka: | |
| strategy: | |
| matrix: | |
| node-version: [22.x, 24.x] | |
| uses: ./.github/workflows/ci.common.yml | |
| with: | |
| package_name: '@message-queue-toolkit/kafka' | |
| node_version: ${{ matrix.node-version }} | |
| automerge: | |
| needs: [ general ] | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| steps: | |
| - uses: fastify/github-action-merge-dependabot@v3 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |