Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

chore(deps): bump axios from 1.6.7 to 1.6.8 #2344

chore(deps): bump axios from 1.6.7 to 1.6.8

chore(deps): bump axios from 1.6.7 to 1.6.8 #2344

name: 'CI'
on: [pull_request, push]
jobs:
'Test':
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x]
steps:
- name: 'Checkout repository'
uses: actions/checkout@v4
- name: 'Use Node.js v${{ matrix.node-version }}'
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: 'Install, lint, and test'
run: |
yarn install
yarn lint
yarn test
if: |
contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
- name: 'Upload coverage reports to Codecov'
uses: codecov/codecov-action@v4.1.1
with:
fail_ci_if_error: false
files: ./coverage/lcov.info
flags: unittests