fix(sentry): Update and use local client to not pollute global scope #37
Workflow file for this run
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: Validate Pull Requests | |
on: | |
pull_request: | |
jobs: | |
validate: | |
name: Lint and Test | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- id: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- id: setup | |
uses: ./.github/actions/setup_workspace | |
- run: yarn lint | |
- run: make compile_prod | |
- name: Run headless test | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: make test |