Skip to content

Bump follow-redirects from 1.14.8 to 1.15.6 #95

Bump follow-redirects from 1.14.8 to 1.15.6

Bump follow-redirects from 1.14.8 to 1.15.6 #95

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Unit tests
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 10.x
- run: npm install
- run: npm test