build(deps): update sentry-javascript monorepo to v9.39.0 #3446
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: 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' |