Skip to content

build(deps): update sentry-javascript monorepo to v9.39.0 #3446

build(deps): update sentry-javascript monorepo to v9.39.0

build(deps): update sentry-javascript monorepo to v9.39.0 #3446

Workflow file for this run

name: autofix.ci # needed to securely identify the workflow
on: [push, pull_request]
permissions:
contents: read
jobs:
autofix:
name: Autofix
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v4
- name: Enable Corepack
# Required due to a limitation in setup-node https://github.com/actions/setup-node/issues/480#issuecomment-1820622085
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Format with Prettier
run: yarn format:write
- name: Format with Biome
run: yarn lint:fix
- name: Run autofix.ci
uses: autofix-ci/action@v1
with:
commit-message: 'style: apply automatic fixes'