Skip to content

build(deps): bump react-router-dom from 5.3.4 to 6.24.0 #627

build(deps): bump react-router-dom from 5.3.4 to 6.24.0

build(deps): bump react-router-dom from 5.3.4 to 6.24.0 #627

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Install Dependencies
run: npm install --no-audit
- name: License Check
run: npx license-checker --summary --onlyAllow "Apache-2.0;MIT;BSD-3-Clause;BSD-2-Clause;ISC;CC0-1.0;MPL-2.0;CC-BY-4.0;ODC-By-1.0;WTFPL;CC-BY-3.0;0BSD;Python-2.0;Unlicense"
- name: Audit Dependencies
run: npm audit --production
- name: Build
run: REACT_APP_FULL_VERSION_INFO="$GITHUB_REPOSITORY $GITHUB_SHA built on $(date) $(hostname)" npm run build
- name: Test
run: npm run test
- name: Push Build
run: ./push_build.sh
env:
GITHUB_TOKEN: ${{secrets.PUSH_TOKEN}}