Bump react-router from 7.1.1 to 7.1.3 #895
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
# @format | |
name: Build | |
on: | |
push: | |
branches: [main, development] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.x" | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install --immutable --check-cache | |
- name: Format Check | |
run: yarn format-check | |
- name: Lint Check | |
run: yarn lint-check | |
- name: Build | |
run: yarn build |