Skip to content

Commit 4705304

Browse files
committed
Fix GH Actions syntax maybe
1 parent cdb2652 commit 4705304

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ jobs:
3636
# Re: https://github.com/actions/setup-node/pull/125
3737
- name: Register Problem Matcher for TSC
3838
run: echo "##[add-matcher].github/tsc.json"
39-
if: (contains(matrix.node-version, '12')
40-
4139

4240
- name: Tests
4341
run: npm test -- --no-lint

src/compiler/builderState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ namespace ts {
9191
function getReferencedFileFromImportedModuleSymbol(symbol: Symbol) {
9292
if (symbol.declarations && symbol.declarations[0]) {
9393
const declarationSourceFile = getSourceFileOfNode(symbol.declarations[0]);
94-
return declarationSourceFile && declarationSo
94+
return declarationSourceFile && declarationSourceFile.resolvedPath;
9595
}
9696
}
9797

0 commit comments

Comments
 (0)