Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: provide issue reference for limited caching configuration #1908

Merged
merged 3 commits into from
Feb 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,15 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- id: npm-cache
# Re-enable for all operating systems by removing the following once
# https://github.com/actions/cache/issues/187 is fixed.
if: runner.os == 'Linux'
name: Get npm cache directory
run: |
echo "::set-output name=dir::$(npm config get cache)"
- if: runner.os == 'Linux'
- # Enable for all operating systems by removing the following once
# https://github.com/actions/cache/issues/187 is fixed.
if: runner.os == 'Linux'
name: Cache npm dependencies
uses: actions/cache@v1
with:
Expand Down