Skip to content

AIM-402 Add BullMQ metrics plugin #350

AIM-402 Add BullMQ metrics plugin

AIM-402 Add BullMQ metrics plugin #350

Workflow file for this run

name: ci
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.4]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install --loglevel verbose
- name: echo log
run: cat `find /home/runner/.npm/_logs/ -type f -exec ls -t1 {} + | head -1`
- name: Start Docker
run: npm run docker:start
- name: Build TS
run: |
npm run build
- name: Run Tests
run: |
npm run test:ci
- name: Stop Docker
run: npm run docker:stop
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}