WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

content: Improvements to the Raph Rover docs #53

content: Improvements to the Raph Rover docs

content: Improvements to the Raph Rover docs #53

Workflow file for this run

name: Lint
on:
push:
branches:
- development
pull_request:
branches:
- production
- development
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 24
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check Frontmatter keys
run: yarn check:frontmatter
- name: Check Types
if: success() || failure()
run: yarn check:types
- name: Check Formatting
if: success() || failure()
run: yarn check:formatting
- name: Check spelling
if: success() || failure()
run: yarn check:spelling