Skip to content

Update dependency react-router-dom to v6 #5243

Update dependency react-router-dom to v6

Update dependency react-router-dom to v6 #5243

Workflow file for this run

name: Check PR
on:
push:
branches-ignore:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install
run: yarn install
- name: build
run: yarn build
- name: lint
run: yarn lint