Skip to content

get shift+enter working in ghostty #18

get shift+enter working in ghostty

get shift+enter working in ghostty #18

Workflow file for this run

name: Test Docs Build
on:
pull_request:
branches:
- main
paths:
- 'website/**'
- '.github/workflows/test-docs.yml'
jobs:
test-build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: website/package-lock.json
- name: Install dependencies
working-directory: website
run: npm ci
- name: Build website
working-directory: website
run: npm run build