Skip to content

[Snyk] Security upgrade axios from 1.6.4 to 1.7.4 #105

[Snyk] Security upgrade axios from 1.6.4 to 1.7.4

[Snyk] Security upgrade axios from 1.6.4 to 1.7.4 #105

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Check Merge
on:
pull_request:
branches: [main]
jobs:
eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/checkout@v2
- name: Install packages
run: yarn install
- name: ESLint
run: npm run eslint