memoir/.github/actions/build/action.yaml
2023-06-02 23:57:55 +02:00

18 lines
380 B
YAML

name: "Build"
description: "Install deps and build docs"
runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
shell: bash
- name: Build
run: pnpm build
shell: bash