forked from woem.men/forkey
.
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
eb7bdbf257
commit
970e17b184
1 changed files with 6 additions and 6 deletions
|
@ -23,6 +23,12 @@ jobs:
|
||||||
pnpm_install:
|
pnpm_install:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Cache repository
|
||||||
|
id: cache-node
|
||||||
|
uses: actions/cache@v4
|
||||||
|
with:
|
||||||
|
path: ./
|
||||||
|
key: repo-cache
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
@ -34,12 +40,6 @@ 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