.
Some checks failed
Test (production install and build) / production (22.x) (push) Has been cancelled

This commit is contained in:
Luna 2025-01-19 18:10:23 +00:00
parent eb7bdbf257
commit 970e17b184

View file

@ -23,6 +23,12 @@ jobs:
pnpm_install:
runs-on: ubuntu-latest
steps:
- name: Cache repository
id: cache-node
uses: actions/cache@v4
with:
path: ./
key: repo-cache
- uses: actions/checkout@v4
with:
fetch-depth: 0
@ -34,12 +40,6 @@ jobs:
with:
node-version-file: '.node-version'
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
lint: