Skip to content

Bump follow-redirects from 1.15.1 to 1.15.6 #160

Bump follow-redirects from 1.15.1 to 1.15.6

Bump follow-redirects from 1.15.1 to 1.15.6 #160

Workflow file for this run

# This workflow will install JavaScript dependencies, run tests and lint.
name: unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and run tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["12.x", "14.x", "16.x"]
steps:
- uses: actions/checkout@v2
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build package in production mode
run: npm run build
- name: Lint with standard
run: npm run lint
- name: Test with jest
run: npm run test