Skip to content

docs: add railway deployment docs #930

docs: add railway deployment docs

docs: add railway deployment docs #930

Workflow file for this run

name: docs
on:
pull_request:
paths:
- ".github/workflows/docs.yaml"
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: ⚙️ Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: yarn
cache-dependency-path: docs/yarn.lock
- name: 📦 Install Dependencies
run: yarn install --frozen-lockfile
- name: ✨ Check Format
run: yarn run format:check
- name: 🧹 Lint
run: yarn run lint
- name: 👷 Build website
run: yarn build