Skip to content

Commit

Permalink
try caching node_modules for fun and profit
Browse files Browse the repository at this point in the history
  • Loading branch information
SjoenH committed May 6, 2024
1 parent 13a3b36 commit c7b4f39
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main_app-kabinizer-client-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ jobs:
with:
node-version: 'lts/*'

- name: Cache node_modules
uses: actions/cache@v3
with:
path: kabinizer-front-end/node_modules
key: ${{ runner.os }}-node-${{ hashFiles('kabinizer-front-end/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: npm install, build
run: |
cd kabinizer-front-end
Expand Down

0 comments on commit c7b4f39

Please sign in to comment.