Added license & updated build to cache node_modules
All checks were successful
Build / Tag Version (push) Successful in 3s
Build / Publish (push) Successful in 3s
Build / Build NPM Project (push) Successful in 16s

This commit is contained in:
2023-12-19 23:58:05 -05:00
parent 14fbd7d089
commit cd80208734
3 changed files with 29 additions and 10 deletions

View File

@ -17,6 +17,11 @@ jobs:
- name: Clone Repository
uses: ztimson/actions/clone@develop
- name: Restore node_modules
uses: ztimson/actions/cache/restore@develop
with:
key: node_modules
- name: Install Dependencies
run: npm i
@ -26,6 +31,12 @@ jobs:
- name: Test
run: npm run test:coverage
- name: Cache node_modules
uses: ztimson/actions/cache@develop
with:
key: node_modules
pattern: node_modules
- name: Cache Artifacts
uses: ztimson/actions/cache@develop
with: