Skip to content

Bump follow-redirects from 1.14.8 to 1.15.4 #284

Bump follow-redirects from 1.14.8 to 1.15.4

Bump follow-redirects from 1.14.8 to 1.15.4 #284

Workflow file for this run

name: "Build and Test"
on:
push:
branches: [main]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14.x
cache: 'yarn'
# The yarn cache is not node_modules
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Jest tests
run: yarn test