Skip to content

Add "Autofix" action #1

Add "Autofix" action

Add "Autofix" action #1

Workflow file for this run

name: Auto-Fix
on:
push:
branches:
- main
- patch-release
- next
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
fix:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable
- name: Check Dependencies
run: yarn fix
- name: Run yarn (/)
run: |
yarn
yarn dedupe
- name: Run yarn (/website)
run: |
yarn
yarn dedupe
working-directory: website
- name: Run yarn (/scripts/release)
run: |
yarn
yarn dedupe
working-directory: scripts/release
- name: Run yarn (/scripts/tools/bundle-test)
run: |
yarn
yarn dedupe
working-directory: scripts/tools/bundle-test
- name: Run yarn (/scripts/tools/eslint-plugin-prettier-internal-rules)
run: |
yarn
yarn dedupe
working-directory: scripts/tools/eslint-plugin-prettier-internal-rules
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc