From a4beba2d2d81f4b122eceff72c2a495c27180011 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 24 Jun 2024 19:12:02 +0200 Subject: [PATCH] feat(ci): add autofix.ci action on PR MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/autofix.yml | 57 +++++++++++++++++++++++++++++++++++ .github/workflows/ci.yml | 4 +-- 2 files changed, 58 insertions(+), 3 deletions(-) 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..a988c47a --- /dev/null +++ b/.github/workflows/autofix.yml @@ -0,0 +1,57 @@ +name: autofix.ci +on: + pull_request: + push: + branches: ['main'] +permissions: + contents: read + +jobs: + autofix-ocpp-server: + runs-on: ubuntu-latest + defaults: + run: + working-directory: tests/ocpp-server + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: 3.12 + - run: pip install poetry + - run: poetry install --no-root + - run: poetry run task format + + - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a + autofix-simulator: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts + cache: 'pnpm' + + - run: pnpm install --ignore-scripts --frozen-lockfile + - run: pnpm format + + - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a + autofix-dashboard: + runs-on: ubuntu-latest + defaults: + run: + working-directory: ui/web + steps: + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts + cache: 'pnpm' + + - run: pnpm install --ignore-scripts --frozen-lockfile + - run: | + pnpm format + pnpm lint:fix + + - uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7e5591e..3cc5a31d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,9 +38,7 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install Poetry - run: | - python -m pip install --upgrade pip - pip install poetry + run: pip install poetry - name: Install Dependencies run: poetry install --no-root - name: Lint -- 2.34.1