Skip to content

Bump axios from 1.3.4 to 1.7.0 #924

Bump axios from 1.3.4 to 1.7.0

Bump axios from 1.3.4 to 1.7.0 #924

Workflow file for this run

name: ESLint
on: [push, pull_request]
jobs:
update:
name: ESLint
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Node v12
uses: actions/setup-node@v3
with:
node-version: 12
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint:fix
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
add: src
message: 'chore(lint): Auto-fix linting errors'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}