Skip to content

Bump axios from 0.24.0 to 1.6.0 #130

Bump axios from 0.24.0 to 1.6.0

Bump axios from 0.24.0 to 1.6.0 #130

Workflow file for this run

name: Run formatting check
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: '16.x'
- run: npm ci
- run: npm run format:check
- run: npm run lint
integration-tests:
runs-on: ubuntu-latest
services:
rabbitmq:
image: rabbitmq:3-management
ports:
- '5672:5672'
- '8082:15672'
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: '16.x'
- name: Install dependencies
run: npm ci --include=dev
- name: Run Integration Tests
run: npm run test:e2e