Skip to content

Bump follow-redirects from 1.15.2 to 1.15.4 #2764

Bump follow-redirects from 1.15.2 to 1.15.4

Bump follow-redirects from 1.15.2 to 1.15.4 #2764

Workflow file for this run

name: CI Build
on: pull_request
jobs:
check-lockfile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: NPM Install
run: npm install
- name: Check that package-lock.json has no changes
run: exit $(git status --porcelain | wc -l)
check-req-json:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'npm'
- name: NPM Install
run: npm install
- name: Run req-gen
run: npm run req-gen
- name: Check that the requirements json has no changes
run: exit $(git status --porcelain | wc -l)