Add links and alignment functionality to the CLI formatter tooling #559
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: PR Checks | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- edited | |
branches: | |
- main | |
- next-* | |
jobs: | |
pr-checklist: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: cd ./.github/actions/pr-checklist && npm install | |
- name: PR checklist | |
uses: ./.github/actions/pr-checklist | |
id: pr-checklist | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |