fix: Serialize Geraetemerkmal WITH GAS_
prefix in STJ (instead of w/o) (on v0.8.x legacy branch)
#1202
Workflow file for this run
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: Prettier | |
on: pull_request | |
jobs: | |
prettier: | |
name: Prettier JSON Formatter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
- name: Install Prettier | |
run: npm install prettier | |
- name: Run Prettier | |
uses: wearerequired/lint-action@v2 | |
with: | |
github_token: "${{ secrets.github_token }}" | |
eslint: false | |
prettier: true | |
auto_fix: false | |
prettier_args: --ignore-path .prettierignore |