Skip to content

Bump axios from 1.4.0 to 1.6.7 #1206

Bump axios from 1.4.0 to 1.6.7

Bump axios from 1.4.0 to 1.6.7 #1206

Workflow file for this run

name: Node CI
on:
- push
concurrency:
group: node-ci-${{ github.event_name }}-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x
- 20.x
- 21.x
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
npm test
env:
CI: true