Skip to content

Commit 963c28d

Browse files
authored
fix: issue with test type, and ensure build runs in CI (#116)
1 parent ca969ba commit 963c28d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
run: npm ci
2828
- name: Format Code
2929
run: npm run format
30+
- name: Build Code
31+
run: npm run build
3032
- name: Commit changes
3133
uses: stefanzweifel/git-auto-commit-action@v4
3234
with:

src/__tests__/main.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ for (const entry of fs.readdirSync(FIXTURES)) {
6868

6969
return parser.positionAt(offset);
7070
};
71-
const tagStack: Ranges.OpenTagName[] = [];
71+
const tagStack: Ranges.Template[] = [];
7272
const parser = createParser({
7373
onError(range) {
7474
addRange(`error(${ErrorCode[range.code]}:${range.message})`, range);

0 commit comments

Comments
 (0)