fix(deps): update dependency react-router-dom to v7 - autoclosed #1906
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: Examples & Templates | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'examples/**/*' | |
| - 'templates/**/*' | |
| pull_request: | |
| paths: | |
| - 'examples/**/*' | |
| - 'templates/**/*' | |
| jobs: | |
| examples: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: | |
| - nextjs-app | |
| - nextjs-pages | |
| - remix-ts | |
| - vite-ts | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/[email protected] | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install | |
| run: npm ci | |
| working-directory: examples/${{ matrix.path }} | |
| - name: Build | |
| run: npm run build | |
| working-directory: examples/${{ matrix.path }} | |
| - name: Test | |
| run: npm run test --if-present | |
| working-directory: examples/${{ matrix.path }} | |
| - name: ESLint | |
| run: npm run lint --if-present | |
| working-directory: examples/${{ matrix.path }} | |
| templates: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| path: | |
| - nextjs-app | |
| - nextjs-pages | |
| - vite-ts | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/[email protected] | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install | |
| run: npm ci | |
| working-directory: templates/${{ matrix.path }} | |
| - name: Build | |
| run: npm run build | |
| working-directory: templates/${{ matrix.path }} | |
| - name: Test | |
| run: npm run test --if-present | |
| working-directory: templates/${{ matrix.path }} | |
| - name: ESLint | |
| run: npm run lint --if-present | |
| working-directory: templates/${{ matrix.path }} |