Skip to content

Bump follow-redirects from 1.15.2 to 1.15.6 #912

Bump follow-redirects from 1.15.2 to 1.15.6

Bump follow-redirects from 1.15.2 to 1.15.6 #912

Workflow file for this run

name: Run Tests
concurrency:
group: run-tests-${{ github.head_ref }}
cancel-in-progress: true
on:
pull_request:
branches: [master]
jobs:
run-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Set up dependencies
env:
YARN_ENABLE_COLORS: false
YARN_ENABLE_PROGRESS_BARS: false
run: |
yarn
- name: Run tests
run: |
set -ex
yarn lint
yarn types
yarn test
[ -z "$(git status --porcelain)" ]