File tree Expand file tree Collapse file tree 3 files changed +8474
-9
lines changed Expand file tree Collapse file tree 3 files changed +8474
-9
lines changed Original file line number Diff line number Diff line change 36
36
uses : actions/setup-node@v4
37
37
with :
38
38
node-version : ${{ matrix.node-version }}
39
- cache : ' npm '
39
+ cache : ' yarn '
40
40
41
41
- name : Cache TypeScript build
42
42
uses : actions/cache@v4
61
61
${{ runner.os }}-test-
62
62
63
63
- name : Install dependencies
64
- run : npm ci --legacy-peer-deps
64
+ run : yarn install --frozen-lockfile
65
65
66
66
# Auto-fix linting issues (only on push to main)
67
67
- name : Check for fixable linting issues
@@ -187,11 +187,11 @@ jobs:
187
187
uses : actions/setup-node@v4
188
188
with :
189
189
node-version : ' 20.x'
190
- cache : ' npm '
190
+ cache : ' yarn '
191
191
registry-url : ' https://registry.npmjs.org'
192
192
193
193
- name : Install dependencies
194
- run : npm ci --legacy-peer-deps
194
+ run : yarn install --frozen-lockfile
195
195
196
196
- name : Download coverage artifacts
197
197
uses : actions/download-artifact@v4
@@ -443,10 +443,10 @@ jobs:
443
443
uses : actions/setup-node@v4
444
444
with :
445
445
node-version : ' 20.x'
446
- cache : ' npm '
446
+ cache : ' yarn '
447
447
448
448
- name : Install dependencies
449
- run : npm ci --legacy-peer-deps
449
+ run : yarn install --frozen-lockfile
450
450
451
451
- name : Build project
452
452
run : npm run build
Original file line number Diff line number Diff line change 4
4
"description" : " TypeScript CLI for markdown file operations with intelligent link refactoring" ,
5
5
"main" : " dist/index.js" ,
6
6
"types" : " dist/index.d.ts" ,
7
- "bin" : {
8
- "markmv" : " ./dist/cli.js"
9
- },
7
+ "bin" : " ./dist/cli.js" ,
10
8
"exports" : {
11
9
"." : {
12
10
"types" : " ./dist/index.d.ts" ,
You can’t perform that action at this time.
0 commit comments