Skip to content

Bump axios from 0.27.2 to 1.6.6 #350

Bump axios from 0.27.2 to 1.6.6

Bump axios from 0.27.2 to 1.6.6 #350

Workflow file for this run

name: Node CI
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, build, and test
run: |
yarn install
yarn lint
yarn build
yarn test --coverage
env:
CI: true
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}