Bump follow-redirects from 1.15.2 to 1.15.4 #14
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 React App | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.github/**' | |
- '.vscode/**' | |
- 'infra/**' | |
- '**.md' | |
jobs: | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Use Node 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: "16.x" | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build:ci | |
- name: Test | |
run: npm run test:ci |