Skip to content

Bump follow-redirects from 1.15.5 to 1.15.6 #144

Bump follow-redirects from 1.15.5 to 1.15.6

Bump follow-redirects from 1.15.5 to 1.15.6 #144

Workflow file for this run

name: tests
on:
push:
branches:
- "**"
- "!main"
pull_request:
branches:
- "**"
- "!main"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# cache: "npm"
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- name: Build
run: CI=false yarn build