Skip to content

Update deployment

Update deployment #33

Workflow file for this run

name: Deploy Docs
on: [push, pull_request]
jobs:
build_and_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:

Check failure on line 13 in .github/workflows/deploy_docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy_docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
version: 8
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Test to see if the project compiles
run: pnpm run build
- name: Build the docs
run: npx typedoc
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs