From c0c46c0b857a6554442bc04ff9efb0692e2ddb44 Mon Sep 17 00:00:00 2001 From: "Breno A." Date: Wed, 25 Sep 2024 19:21:51 -0300 Subject: [PATCH] Create vmd.yml --- .github/workflows/vmd.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/vmd.yml diff --git a/.github/workflows/vmd.yml b/.github/workflows/vmd.yml new file mode 100644 index 0000000..27f4322 --- /dev/null +++ b/.github/workflows/vmd.yml @@ -0,0 +1,31 @@ +name: Vue Analysis + +on: + workflow_dispatch: + pull_request: + branches: + - main + push: + branches: + - main + +permissions: + contents: read + pull-requests: write + +jobs: + detect-mess: + runs-on: ubuntu-latest + name: Detect Vue Mess + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Vue Mess Detector Analysis + uses: brenoepics/vmd-action@v0.0.1 +