Skip to content

Commit 9a10e13

Browse files
committed
Fix CI
1 parent a0b9f4d commit 9a10e13

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/package-js-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
with:
3434
path: node_modules
3535
key: v5-package-node-modules-cache-${{ hashFiles('yarn.lock') }}
36+
- name: run conversion script
37+
if: matrix.versions == 'oldest'
38+
run: script/convert
3639
- name: Install Node modules with Yarn for renderer package
3740
run: |
3841
yarn install --no-progress --no-emoji

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
"module": "CommonJS",
88
"noImplicitAny": true,
99
"outDir": "node_package/lib",
10+
"skipLibCheck": true,
1011
"strict": true,
1112
"incremental": true,
1213
"target": "es5"
1314
},
14-
"include": ["node_package/src/**/*"]
15+
"include": ["node_package/src/**/*", "knip.ts"]
1516
}

0 commit comments

Comments
 (0)