Skip to content

Fix Wisk Link

Fix Wisk Link #94

Workflow file for this run

# Attributions
# Prettier Action: https://github.com/marketplace/actions/prettier-action
# Github Checkout Action: https://github.com/actions/checkout
name: Linter
on:
pull_request:
branches:
- '*'
permissions:
contents: write
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{github.event.pull_request.head.ref }}
repository: ${{github.event.pull_request.head.repo.full_name}}
- name: Prettify code
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write **/*.md
dry: true