From 3bcdd3fdb5f457ea7b4b2dba74167354a8ae4aec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gayoso=20Gonz=C3=A1lez?= Date: Thu, 6 Jul 2023 15:56:54 +0200 Subject: [PATCH] Minor: remove github action for prettier --- .github/workflows/format_vue_code.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/format_vue_code.yml diff --git a/.github/workflows/format_vue_code.yml b/.github/workflows/format_vue_code.yml deleted file mode 100644 index b5c5fff31c..0000000000 --- a/.github/workflows/format_vue_code.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Vue format code 🔎 - -on: [push, pull_request] - -jobs: - prettier: - runs-on: ubuntu-20.04 - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - ref: ${{ github.event.pull_request.head.ref }} - repository: ${{ github.event.pull_request.head.repo.full_name }} - - - name: Prettify code - uses: creyD/prettier_action@v4.3 - with: - # This part is also where you can pass other options, for example: - prettier_options: assets/vue/**/*.{vue,js} - dry: True - only_changed: True -