Skip to content

Merge pull request #16 from platformatic/renovate/pino-9.x #74

Merge pull request #16 from platformatic/renovate/pino-9.x

Merge pull request #16 from platformatic/renovate/pino-9.x #74

Workflow file for this run

name: ci
on:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
services:
rabbitmq:
image: rabbitmq:latest
ports:
- 5672:5672
- 15672:15672
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run tests
run: |
npm run test