Compare commits

...

2 Commits

Author SHA1 Message Date
Ilia Mashkov
211ed073e6 chore: specify yarn version
All checks were successful
Workflow / build (push) Successful in 44s
2026-01-14 16:02:45 +03:00
Ilia Mashkov
976672ce5e fix(workflow): turn cache on 2026-01-14 16:02:24 +03:00
2 changed files with 11 additions and 0 deletions

View File

@@ -36,6 +36,16 @@ jobs:
# path: ${{ github.workspace }}/.yarn/cache
# key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# restore-keys: ${{ runner.os }}-yarn-
#
- name: Persistent Yarn Cache
uses: actions/cache@v4
id: yarn-cache
with:
# In Yarn Berry, the cache is local to the project
path: .yarn/cache
# Ensure a clean key without hidden newline characters
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-yarn-
- name: Install dependencies
# --immutable ensures the lockfile isn't changed (replaces --frozen-lockfile)

View File

@@ -2,6 +2,7 @@
"name": "glyphdiff",
"private": true,
"version": "0.0.1",
"packageManager": "yarn@4.11.0",
"type": "module",
"scripts": {
"dev": "vite",