mirror of
https://github.com/cupcakearmy/memoir.git
synced 2025-09-07 16:30:41 +00:00
feat: deploy to pages
This commit is contained in:
19
.github/actions/build/action.yaml
vendored
Normal file
19
.github/actions/build/action.yaml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
Reference in New Issue
Block a user