Update package.json #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: VMD 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 | |
- uses: pnpm/action-setup@v4 | |
name: Instal pnpm | |
with: | |
version: 'latest' # delete this line if you have packageManager defined in package.json | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Vue Mess Detector Analysis | |
uses: brenoepics/vmd-action@main | |
with: | |
packageManager: 'pnpm' |