mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-23 00:26:28 +00:00
20 lines
402 B
YAML
20 lines
402 B
YAML
|
name: "Build"
|
||
|
description: "Install deps and build docs"
|
||
|
|
||
|
runs:
|
||
|
using: "composite"
|
||
|
steps:
|
||
|
- uses: pnpm/action-setup@v2
|
||
|
with:
|
||
|
version: 7
|
||
|
- 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
|