Skip to content

build(deps): bump bullmq from 3.14.1 to 4.8.0 #108

build(deps): bump bullmq from 3.14.1 to 4.8.0

build(deps): bump bullmq from 3.14.1 to 4.8.0 #108

Workflow file for this run

name: Test
on:
push:
branches:
- main
- renovate/**
- dependabot/**
pull_request:
types:
- opened
- synchronize
permissions:
contents: read
jobs:
test_matrix:
strategy:
matrix:
node-version:
- 18
- 19
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm clean-install
- run: npm run test
test:
runs-on: ubuntu-latest
needs: test_matrix
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: npm
- run: npm clean-install
- run: npm audit signatures
- run: npm run lint