Skip to content

Prettier

Prettier #225

Workflow file for this run

name: Prettier
on:
push:
branches: ['main']
pull_request:
# The branches below must be a subset of the branches above
branches: ['main']
schedule:
- cron: '27 13 * * 1'
jobs:
eslint:
name: Run prettier scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Prettier
run: |
npm install [email protected]
- name: Run Prettier
run: npx prettier . --check