Skip to content

Bump react-router from 5.2.1 to 6.16.0 #1200

Bump react-router from 5.2.1 to 6.16.0

Bump react-router from 5.2.1 to 6.16.0 #1200

Workflow file for this run

name: build
on:
push:
branches:
- develop
- master
pull_request:
branches:
- develop
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- name: checkout
uses: actions/checkout@v2
- name: node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: cache node modules
uses: actions/cache@v2
with:
# https://github.com/actions/cache/blob/main/examples.md#macos-and-ubuntu
# https://github.com/actions/cache/issues/67
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
# https://docs.npmjs.com/cli/v6/commands/npm-ci
- name: npm ci
run: npm ci
- name: npm run lint
run: npm run lint
- name: npm run flow
run: npm run flow
- name: npm run test
run: npm run test
- name: npm run build:prod
run: npm run build:prod
- name: codecov
uses: codecov/codecov-action@v1