Skip to content

Bump axios from 0.21.2 to 1.6.0 #279

Bump axios from 0.21.2 to 1.6.0

Bump axios from 0.21.2 to 1.6.0 #279

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- develop
- main
- feature/*
- hotfix/*
- release/*
pull_request:
branches:
- develop
- main
- feature/*
- hotfix/*
- release/*
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Node.js dependencies
run: yarn install
- name: Run linters
env:
CI: true
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn lint