Skip to content

feat: 2.0.0 beta.2 docs #134

feat: 2.0.0 beta.2 docs

feat: 2.0.0 beta.2 docs #134

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches: [main]
jobs:
prettier:
name: Prettier Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run Prettier
id: prettier-run
uses: rutajdash/prettier-cli-action@v1.0.0
with:
config_path: ./.prettierrc.yml
- name: Prettier Output
if: ${{ failure() }}
shell: bash
run: |
echo "The following files are not formatted correctly:"
echo "${{steps.prettier-run.outputs.prettier_output}}"