From 3ebccb121498cb0c0c5a19485a6911008124c92c Mon Sep 17 00:00:00 2001 From: Kacper Wojciechowski <39823706+jog1t@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:16:22 +0100 Subject: [PATCH] chore: add autofix.ci --- .github/workflows/autofix.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/autofix.yml diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml new file mode 100644 index 00000000..9b17d05a --- /dev/null +++ b/.github/workflows/autofix.yml @@ -0,0 +1,23 @@ +name: autofix.ci + +on: + pull_request: + push: + branches: [ "main" ] +permissions: + contents: read + +jobs: + autofix: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - run: corepack enable + - uses: actions/setup-node@v4 + with: + node-version: 16 + + - run: yarn install + - run: yarn fmt + + - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a \ No newline at end of file