Bump follow-redirects from 1.14.8 to 1.15.4 #284
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |