1
0
mirror of synced 2026-01-02 03:04:13 -05:00

Merge branch 'main' into repo-sync

This commit is contained in:
Octomerger Bot
2022-05-29 19:38:04 -05:00
committed by GitHub

View File

@@ -140,7 +140,7 @@ jobs:
{% raw %}${{ runner.os }}-build-{% endraw %}
{% raw %}${{ runner.os }}-{% endraw %}
- if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == false }}{% endraw %}
- if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == 'false' }}{% endraw %}
name: List the state of node modules
continue-on-error: true
run: npm list
@@ -196,7 +196,7 @@ You can use the output of the `cache` action to do something based on whether a
In the example workflow above, there is a step that lists the state of the Node modules if a cache miss occurred:
```yaml
- if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == false }}{% endraw %}
- if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == 'false' }}{% endraw %}
name: List the state of node modules
continue-on-error: true
run: npm list