We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85be08d commit ab52daaCopy full SHA for ab52daa
.github/workflows/typescript.yml
@@ -18,14 +18,15 @@ jobs:
18
with: { node-version: 16.x }
19
- run: npm ci
20
- run: npm run build:node
21
- - run: npm run test:dist:types
22
- - run: npm uninstall jest @types/jest
23
24
- run: npm install --no-save typescript@4.2
+ - run: for d in node_modules/@types/*; do [[ $d == *node ]] || rm -r $d; done
25
- run: npm run test:dist:types
26
27
- run: npm install --no-save typescript@4.0
28
29
30
- run: npm install --no-save typescript@3.8
31
32
0 commit comments