Skip to content

Bump follow-redirects from 1.15.5 to 1.15.6 #83

Bump follow-redirects from 1.15.5 to 1.15.6

Bump follow-redirects from 1.15.5 to 1.15.6 #83

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
strategy:
matrix:
step: ["lint", "format", "docs"]
node-version: [14.x]
name: ${{ matrix.step }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: ${{ matrix.step }}
if: always()
run: |
npm ci --ignore-scripts
npm run ${{ matrix.step }}
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "PR: ${{ matrix.step }} fixed"