Skip to content
This repository has been archived by the owner on May 8, 2020. It is now read-only.

KSXGitHub/github-actions-setup-pnpm

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

NO LONGER MAINTAINED

Use pnpm/action-setup instead.

Setup PNPM

Install PNPM package manager.

Inputs

version

Required Version of PNPM to install.

dest

Optional Where to store PNPM files.

bin_dest

Optional Where to store executables (pnpm and pnpx commands).

registry

Optional Registry to download PNPM from.

Outputs

dest

Expanded path of inputs#dest.

bin_dest

Expanded path of inputs@bin_dest.

Usage example

on:
  - push
  - pull_request

jobs:
  runs-on: ubuntu-latest

  steps:
    - uses: actions/checkout@v2

    - uses: KSXGitHub/github-actions-setup-pnpm@master
      with:
        version: 4.11.1

    - name: Install dependencies
      run: pnpm install

Notes

This action does not setup Node.js for you, use actions/setup-node yourself.

License

MIT © Hoàng Văn Khải