Bump follow-redirects from 1.15.2 to 1.15.4 #2764
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |