Compare commits
2 Commits
83397f3786
...
211ed073e6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
211ed073e6 | ||
|
|
976672ce5e |
@@ -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)
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"name": "glyphdiff",
|
||||
"private": true,
|
||||
"version": "0.0.1",
|
||||
"packageManager": "yarn@4.11.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
|
||||
Reference in New Issue
Block a user