Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Bump follow-redirects from 1.14.5 to 1.15.6 #207

Bump follow-redirects from 1.14.5 to 1.15.6

Bump follow-redirects from 1.14.5 to 1.15.6 #207

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags-ignore:
- "**"
pull_request:
jobs:
tests:
name: Lint, build and test
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
node: [12, 14, 15, 16]
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Update NPM
run: |
npm install -g npm@latest
- name: NPM install, lint and build
run: |
npm ci
npm run lint
npm run format
npm run build
- name: Run tests
run: |
npm run test