mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-12 05:24:43 +00:00
833b02abdb
* add debug step to npm action * add another log * up package-lock
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 }}
|