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

20 lines
402 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
with:
2023-04-28 12:12:41 +00:00
version: 8
2023-02-19 12:39:16 +00:00
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
shell: bash
- name: Build
run: pnpm build
shell: bash