Skip to content

chore(deps): update dependency eslint-plugin-react to ^7.37.3 (#604) #5623

chore(deps): update dependency eslint-plugin-react to ^7.37.3 (#604)

chore(deps): update dependency eslint-plugin-react to ^7.37.3 (#604) #5623

Workflow file for this run

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