Skip to content

chore(deps): update dependency axios to v1 #3702

chore(deps): update dependency axios to v1

chore(deps): update dependency axios to v1 #3702

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'mock/README.md'
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
- 'mock/README.md'
jobs:
build:
if: >
(github.event_name == 'push' && github.ref == 'refs/heads/main') ||
(github.event_name == 'pull_request')
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
run: npm ci
- name: Test
run: npm test
env:
DEBUG: openapi-cop:*
CI: true
- name: Analyze dependencies
run: npm run test:deps