Skip to content

Commit 62119ca

Browse files
committed
Update node & yarn
1 parent 1ac1072 commit 62119ca

File tree

6 files changed

+12873
-8435
lines changed

6 files changed

+12873
-8435
lines changed

.github/actions/setup/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ runs:
88
uses: actions/setup-node@v3
99
with:
1010
node-version-file: .nvmrc
11-
cache: 'npm'
1211

1312
- name: Cache dependencies
1413
id: yarn-cache
@@ -17,8 +16,9 @@ runs:
1716
path: |
1817
**/node_modules
1918
.yarn/install-state.gz
20-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
19+
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}-${{ hashFiles('**/package.json', '!node_modules/**') }}
2120
restore-keys: |
21+
${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
2222
${{ runner.os }}-yarn-
2323
2424
- name: Install dependencies

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.19.1
1+
lts/*

.yarn/releases/yarn-4.0.2.cjs

+893
Large diffs are not rendered by default.

.yarnrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
nodeLinker: node-modules
2+
3+
yarnPath: .yarn/releases/yarn-4.0.2.cjs

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@
4444
"devDependencies": {
4545
"markdownlint": "^0.27.0",
4646
"markdownlint-cli2": "^0.6.0"
47-
}
47+
},
48+
"packageManager": "[email protected]"
4849
}

0 commit comments

Comments
 (0)