Fix caching.

This commit is contained in:
Corey Butler 2023-03-30 22:00:54 -05:00
parent 34b5e3dce7
commit 63c6595761
No known key found for this signature in database
GPG Key ID: 2C6540ABFD72766C

View File

@ -11,13 +11,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Dependencies
- name: Prepare Dependency Cache
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install Dependencies
run: npm install
- name: Build
run: |