chore(deps): update dependency react-router to v7.10.1 (#321) #777
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: Carbon React Router starter template CI | |
| on: [push] | |
| jobs: | |
| run-defined-frontend-tests: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: . | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Read .nvmrc | |
| run: echo ::set-output name=NODE_VERSION::$(cat .nvmrc) | |
| id: nvm | |
| - name: Use Node.js ${{ steps.nvm.outputs.NODE_VERSION }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ steps.nvm.outputs.NODE_VERSION }} | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test |