chore(deps): update react monorepo to v19.1.3 #141
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: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node: [18, 20, 22] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install | |
| run: | | |
| npm ci | |
| - name: Build Package | |
| run: | | |
| npm run build | |
| npm run build:module | |
| - name: Run Linter | |
| run: | | |
| npm run lint | |
| - name: Run Unit Tests | |
| run: | | |
| npm run test |