Update .gitea/workflows/build.yml

This commit is contained in:
Zakary Timson 2023-07-27 03:32:41 +00:00
parent 64cb1dca15
commit 825dc1a563

View File

@ -10,11 +10,20 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Create Hash
uses: actions/go-hashfiles@v0.0.1
id: get-hash
with:
patterns: package-lock.json
- name: Restore Cached Dependencies
uses: actions/cache/restore@v3
with:
path: node_modules
key: npm-${{ steps.get-hash.outputs.hash }}
- name: Install Dependencies
run: npm i
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: |
node_modules
key: npm-${{ hashFiles('package-lock.json') }}
path: node_modules
key: npm-${{ steps.get-hash.outputs.hash }}