GitHub Action
Get Package Manager
v1.0.0
Latest version
Get which package manager you're using (yarn or pnpm or npm)
Create .github/workflows/get-package-manager.yml
in the default branch:
steps:
- uses: actions/checkout@v3
- uses: wow-actions/get-package-manager@v1
id: getpm
- run: |
echo "Package manager in use: ${{ steps.getpm.outputs.pm }}"
The scripts and documentation in this project are released under the MIT License.