Update .gitea/workflows/build.yml
Some checks failed
Build / Dependencies_NPM (push) Failing after 45s
Build / Build_Node (push) Failing after 4s

This commit is contained in:
Zakary Timson 2023-07-27 02:00:23 +00:00
parent 28b80cbc94
commit d0fa2c6490

View File

@ -17,7 +17,7 @@ jobs:
uses: actions/cache@v3
with:
path: node_modules
key: ${{ hashFile('package-lock.json') }}
key: ${{ hashFiles('**/package-lock.json') }}
Build_Node:
runs-on: Docker
container:
@ -27,6 +27,6 @@ jobs:
uses: actions/cache/restore@v3
with:
path: node_modules
key: ${{ hashFile('package-lock.json') }}
key: ${{ hashFiles('**/package-lock.json') }}
- name: Build
run: npm run build