Skip to content

Bump follow-redirects from 1.14.8 to 1.15.4 in /web #27

Bump follow-redirects from 1.14.8 to 1.15.4 in /web

Bump follow-redirects from 1.14.8 to 1.15.4 in /web #27

Workflow file for this run

name: web
on:
pull_request:
paths:
- 'web/**'
jobs:
eslint:
name: eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: reviewdog/action-eslint@v1
with:
workdir: web
fail_on_error: true
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
- run: npm install
working-directory: ./web
- run: npm run build
working-directory: ./web