fix: change padding and fix tag links #86
Workflow file for this run
This file contains hidden or 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: Validate Pull Request | |
| on: pull_request | |
| jobs: | |
| valdiate_pr_title: | |
| name: Validate PR Title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@v5 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| types: | | |
| fix | |
| feat | |
| docs | |
| refactor | |
| test | |
| ci | |
| chore | |
| revert | |
| requireScope: false | |
| validate_build: | |
| name: Validate Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ✅ Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: 💎 Setup Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "3.3.4" | |
| bundler-cache: true | |
| - name: 🛠️ Jekyll Build | |
| run: bundle exec jekyll build | |
| validate_spelling: | |
| name: Validate Spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: ✅ Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: 🅰️ Check spelling | |
| uses: streetsidesoftware/cspell-action@v7 | |
| with: | |
| files: "**/*.{markdown,md,html}" | |
| config: .vscode/cspell.json | |
| incremental_files_only: false |