fix(deps): update react monorepo to v19 #5612
This file contains 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: Test | |
on: | |
- pull_request | |
- push | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
- name: Install | |
run: yarn install | |
- name: Test | |
run: yarn test | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- chrome | |
- firefox | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
- name: Install | |
run: yarn install | |
- name: Build | |
run: yarn build:${{ matrix.platform }} | |
env: | |
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.platform }}-artifact | |
path: dist |