Skip to content

Adapt glossary to vue - refs 4768 #4

Adapt glossary to vue - refs 4768

Adapt glossary to vue - refs 4768 #4

Workflow file for this run

name: Vue format code 🔎
on: [push, pull_request]
jobs:
prettier:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- 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} --check
dry: True
only_changed: True