mirror of https://github.com/waku-org/js-waku.git
21 lines
498 B
YAML
21 lines
498 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) == false }}
|