fix(deps): update sentry-javascript monorepo to v8.48.0 #889
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: Run Tests | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
env: | |
# Use as process.env.SENTRY_AUTH_TOKEN with sentry-vite-plugin | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: pnpm/action-setup@v3 | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version-file: '.tool-versions' | |
cache: pnpm | |
- name: Install deps | |
run: | | |
pnpm install | |
- name: Check to build passed | |
run: pnpm run build | |
- name: Check to test passed | |
run: pnpm run test |