forked from woem.men/forkey
Testing to see how well adding a cache action works
Some checks failed
Test (production install and build) / production (22.x) (push) Has been cancelled
Some checks failed
Test (production install and build) / production (22.x) (push) Has been cancelled
This commit is contained in:
parent
3c9b0effae
commit
0055a1acce
1 changed files with 6 additions and 0 deletions
|
@ -33,6 +33,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
node-version-file: '.node-version'
|
node-version-file: '.node-version'
|
||||||
cache: 'pnpm'
|
cache: 'pnpm'
|
||||||
|
- name: Cache node modules
|
||||||
|
id: cache-node
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: node_modules
|
||||||
|
key: node-modules
|
||||||
- run: pnpm i --frozen-lockfile
|
- run: pnpm i --frozen-lockfile
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
|
|
Loading…
Reference in a new issue