Update .gitea/workflows/build.yml
All checks were successful
Build / Dependencies_NPM (push) Successful in 1m3s

This commit is contained in:
Zakary Timson 2023-07-27 03:57:19 +00:00
parent 6860bf3c40
commit 43261164dc

View File

@ -13,12 +13,12 @@ jobs:
- name: Restore Cached Dependencies
uses: actions/cache/restore@v3
with:
path: node_modules
path: ./node_modules
key: node_modules
- name: Install Dependencies
run: npm i
run: npm ci
- name: Cache Dependencies
uses: actions/cache@v3
with:
path: node_modules
path: ./node_modules
key: node_modules