fix: refactor code for "add instrument name" #109
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: frontend-format | |
on: [push, pull_request] | |
jobs: | |
format-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Prettier | |
run: npm install [email protected] | |
- name: Run Prettier | |
run: npx prettier --check "**/*.css" "**/*.js" --trailing-comma es5 | |
- name: Install djlint | |
run: npm install -g djlint | |
- name: Run djlint | |
run: djlint . --check --extension html --exclude "migrations/*" |