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

20 lines
428 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
2023-06-28 15:12:26 +00:00
env:
NEXT_TELEMETRY_DISABLED: "1"