build(deps): update dependency @types/node to v24.8.1 #81
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: 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: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Format with Prettier | |
run: bun run format:write | |
- name: Format with Biome | |
run: bun run lint:fix | |
- name: Run autofix.ci | |
uses: autofix-ci/action@v1 | |
with: | |
commit-message: 'style: apply automatic fixes' |