Skip to content

Commit

Permalink
chore: change if clause
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Jan 20, 2022
1 parent f261653 commit ad2f33b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions actions/cache-node-modules/action.yml
Expand Up @@ -15,7 +15,7 @@ runs:
using: composite
steps:
# Windows I/O is so slow it's faster to just install the deps every time
- if: ${{ runner.os }} == 'Linux'
- if: ${{ runner.os != 'Windows' }}
uses: actions/cache@v2
id: cache
with:
Expand All @@ -32,5 +32,4 @@ runs:
npm install
npm run --if-present build
${{ inputs.build }}
echo ${{ runner.os }} == 'Linux'
shell: bash

0 comments on commit ad2f33b

Please sign in to comment.