Skip to content

Bump follow-redirects from 1.15.1 to 1.15.6 #31

Bump follow-redirects from 1.15.1 to 1.15.6

Bump follow-redirects from 1.15.1 to 1.15.6 #31

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version:
- 16.x
- 14.x
- 12.x
- 10.x
- 8.x
os:
- ubuntu-20.04
- windows-2019
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Build
run: npm run build