Skip to content

Deleting messages and changing message properties was not possible if correlation key reused between messages #325

Deleting messages and changing message properties was not possible if correlation key reused between messages

Deleting messages and changing message properties was not possible if correlation key reused between messages #325

Workflow file for this run

name: Tests
# Run on Pull Requests and pushes to main
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
# Job Setup
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 #Checkout Repo
- uses: actions/setup-node@v4 #Setup Node
- uses: nanasess/setup-chromedriver@v2 #Setup ChromeDriver
- name: Run Karma Tests
run: |
npm ci
npm run test