Skip to content

Bump follow-redirects from 1.15.3 to 1.15.4 #221

Bump follow-redirects from 1.15.3 to 1.15.4

Bump follow-redirects from 1.15.3 to 1.15.4 #221

Workflow file for this run

name: ESLint
on:
push:
branches:
- "*"
- "!docs"
paths:
- "src/**"
- ".eslintrc.*"
- ".prettierrc"
- ".github/workflows/lint.yml"
pull_request:
branches:
- "*"
- "!docs"
workflow_dispatch:
jobs:
lint:
name: Lint source code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node v12
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Install dependencies
run: npm install
- name: Run ESLint
run: npm run lint:fix
- name: Commit changes
uses: EndBug/add-and-commit@v4
with:
add: src
message: "chore(lint): auto-lint source code"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}