js-waku/.github/actions/npm/action.yml
2025-03-17 09:57:16 +01:00

15 lines
436 B
YAML

name: npm i
runs:
using: "composite"
steps:
- run: echo "$GITHUB_CONTEXT"
shell: bash
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
- run: npm i
shell: bash
if: ${{ contains('refs/heads/master refs/heads/release-please--branches--master', github.ref) }}
- uses: bahmutov/npm-install@v1
if: ${{ !contains('refs/heads/master refs/heads/release-please--branches--master', github.ref) }}