chore(deps): update react monorepo #2058
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: Build and Check | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| concurrency: build-${{ github.head_ref || github.ref }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Yarn Install and Cache | |
| uses: graasp/graasp-deploy/.github/actions/yarn-install-and-cache@v1 | |
| - name: Lint | |
| run: yarn check | |
| - name: Build | |
| run: yarn build | |
| # enable again when we have unit tests | |
| # - name: Unit Tests | |
| # run: yarn vitest |