Skip to content

EDI@Energy KohlrAHBi FV2310 Changes 2024-07-11T07-43-06 (kohlrahbi 1.2.0) #222

EDI@Energy KohlrAHBi FV2310 Changes 2024-07-11T07-43-06 (kohlrahbi 1.2.0)

EDI@Energy KohlrAHBi FV2310 Changes 2024-07-11T07-43-06 (kohlrahbi 1.2.0) #222

Workflow file for this run

name: Prettier
on: pull_request
jobs:
run-linters:
name: Run Prettier and Autofix
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 Node.js dependencies
run: npm install prettier
- name: Run linters
uses: wearerequired/lint-action@v2
with:
github_token: "${{ secrets.github_token }}"
eslint: false
prettier: true
auto_fix: true
prettier_args: --ignore-path .prettierignore
eslint_args: --ignore-path .eslintignore