chore(deps): update dependency react-router-dom to v6.28.1 #50
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: # PRs to main and master branches | |
workflow_dispatch: # manual trigger | |
# Control the concurrency of workflow runs | |
# so that you can ensure that only one workflow runs at a time in a specific context. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
uses: palashmon/reusable-workflows/.github/workflows/main-build.yml@main | |
with: | |
test-needed: false | |
install-legacy-peer-deps: true |