Skip to content

fix: change padding and fix tag links #86

fix: change padding and fix tag links

fix: change padding and fix tag links #86

Workflow file for this run

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