memoir/.github/actions/build/action.yaml

18 lines
380 B
YAML
Raw Normal View History

2023-02-19 12:39:16 +00:00
name: "Build"
description: "Install deps and build docs"
runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
2023-06-02 21:57:55 +00:00
node-version-file: .nvmrc
2023-02-19 12:39:16 +00:00
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
shell: bash
- name: Build
run: pnpm build
shell: bash