Skip to content

chore(deps): bump json5 from 2.1.1 to 2.2.3 #202

chore(deps): bump json5 from 2.1.1 to 2.2.3

chore(deps): bump json5 from 2.1.1 to 2.2.3 #202

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
services:
rabbit:
image: rabbitmq:3.9-management
ports:
- 5672:5672
- 15672:15672
options: >-
--health-cmd "rabbitmq-diagnostics -q ping"
--health-interval 10s
--health-retries 6
--health-timeout 5s
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Build
run: yarn run build
- name: Test
env:
RABBIT_HOST: localhost
RABBIT_PORT: ${{ job.services.rabbit.ports[5672] }}
run: yarn run test
- name: Lint
run: yarn run lint