Skip to content

Commit

Permalink
chore: skip cache on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Jan 20, 2022
1 parent 3681fdd commit fb41e56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions actions/cache-node-modules/action.yml
Expand Up @@ -14,10 +14,10 @@ inputs:
runs:
using: composite
steps:
- uses: actions/cache@v2
# Windows I/O is so slow it's faster to just install the deps every time
- if: ${{ runner.os }} != 'Windows'
uses: actions/cache@v2
id: cache
# Windows I/O is so slow it's faster to just install the deps every time
if: ${{ runner.os }} != 'Windows'
with:
path: |
~/.npm
Expand Down

0 comments on commit fb41e56

Please sign in to comment.