Skip to content

Bump follow-redirects from 1.14.0 to 1.15.4 #463

Bump follow-redirects from 1.14.0 to 1.15.4

Bump follow-redirects from 1.14.0 to 1.15.4 #463

Workflow file for this run

# .github/workflows/nodejs-test.yml
name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['12.x', '14.x', '16.x']
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true