chore(deps): update react-router monorepo to v6.30.3 #862
Workflow file for this run
This file contains hidden or 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: ["**"] | |
| env: | |
| YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
| jobs: | |
| run-version-mismatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Run utils/version-mismatch.js | |
| run: node utils/version-mismatch.js | |
| run-prettier: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Run prettier | |
| run: yarn prettier | |
| run-plugins-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install dependencies | |
| run: yarn install --inline-builds | |
| - name: Run build frontend plugins | |
| run: yarn plugins:build:frontend | |
| - name: Run build backend plugins | |
| run: yarn plugins:build:backend | |
| - name: Run postinstall backend plugins | |
| run: yarn plugins:build:backend:postinstall |