Bump sentry-sdk from 2.45.0 to 2.48.0 #99
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: Build test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| pre_job: | |
| name: Path match check | |
| runs-on: ubuntu-latest | |
| # Map a step output to a job output | |
| outputs: | |
| should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
| steps: | |
| - id: skip_check | |
| uses: fkirc/skip-duplicate-actions@master | |
| with: | |
| github_token: ${{ github.token }} | |
| paths: '["**.py", ".github/workflows/buildcheck.yml", "package.json", "yarn.lock", "**.js", "**.vue"]' | |
| unit_test: | |
| name: Build check | |
| needs: pre_job | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
| - name: Set up Python 3.9 | |
| if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.9 | |
| cache: 'pip' | |
| cache-dependency-path: setup.py | |
| - name: Set up NodeJS | |
| if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 18 | |
| cache: 'yarn' | |
| - name: Install JS dependencies | |
| if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
| run: yarn --frozen-lockfile | |
| - name: Build | |
| if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
| run: make dist |