Skip to content

Bump follow-redirects from 1.15.5 to 1.15.6 #937

Bump follow-redirects from 1.15.5 to 1.15.6

Bump follow-redirects from 1.15.5 to 1.15.6 #937

Workflow file for this run

name: Build and Test Monorepo Packages
on: [push, pull_request]
jobs:
Build-And-Test-Monorepo-Packages:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18.x"
- name: Install dependencies and build packages
run: |
yarn
yarn test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/coverage-final.json
name: Push coverage results
fail_ci_if_error: true
verbose: true