Skip to content

fix(deps): update dependency axios to v1.7.0 #2990

fix(deps): update dependency axios to v1.7.0

fix(deps): update dependency axios to v1.7.0 #2990

Workflow file for this run

name: Testing
on:
push:
branches:
- master
merge_group:
types: [checks_requested]
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.20 ]
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache node modules
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: install and testing
run: |
yarn install --frozen-lockfile
yarn run test