Skip to content

build(deps-dev): bump follow-redirects from 1.15.1 to 1.15.4 #2313

build(deps-dev): bump follow-redirects from 1.15.1 to 1.15.4

build(deps-dev): bump follow-redirects from 1.15.1 to 1.15.4 #2313

Workflow file for this run

name: ci
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node2-
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test