Skip to content

chore: added html visualization of wiring diagram #36

chore: added html visualization of wiring diagram

chore: added html visualization of wiring diagram #36

Workflow file for this run

name: Prettier
# This action works with pull requests and pushes
on:
pull_request:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.head_ref }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --write **/*.{md,html}
# Update the current commit instead of creating a new one
same_commit: True
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}