Skip to content
/ pnpm Public

♻️ Recycling pnpm setup on Github CI

Notifications You must be signed in to change notification settings

dyne/pnpm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

dyne/pnpm action

This action checks-out your repository, set-up node and pnpm, cache your dependencies and install them.

Usage

- uses: dyne/pnpm@main
  with:
    # Fetch depth (for actions/checkout)
    # Default: 1
    fetch-depth: ''

    # Checkout also submodules (for actions/checkout)
    # Default: false
    submodules: ''

    # Specify the node version you want to use (for actions/setup-node)
    # Default: current
    node-version: ''

    # Specify the pnpm version you want to use (for pnpm/action-setup)
    # Default: 9
    pnpm-version: ''

    # Specify where to run the install command
    # Default: .
    working-directory: ''
    
    # Installation script to run
    # Default: pnpm i
    install: ''

    # Build script to run, usually `pnpm build`
    # Default: ''
    build: ''