mirror of
https://github.com/cupcakearmy/formhero.git
synced 2024-12-23 00:26:23 +00:00
22 lines
426 B
YAML
22 lines
426 B
YAML
|
name: "Build"
|
||
|
description: "Build the project."
|
||
|
|
||
|
inputs:
|
||
|
|
||
|
runs:
|
||
|
using: "composite" # This is the magic
|
||
|
steps:
|
||
|
- uses: pnpm/action-setup@v2
|
||
|
with:
|
||
|
version: 7
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: 18
|
||
|
cache: "pnpm"
|
||
|
registry-url: https://registry.npmjs.org/
|
||
|
|
||
|
- run: pnpm install --frozen-lockfile
|
||
|
shell: bash
|
||
|
- run: pnpm run build
|
||
|
shell: bash
|