We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca969ba commit 963c28dCopy full SHA for 963c28d
.github/workflows/ci.yml
@@ -27,6 +27,8 @@ jobs:
27
run: npm ci
28
- name: Format Code
29
run: npm run format
30
+ - name: Build Code
31
+ run: npm run build
32
- name: Commit changes
33
uses: stefanzweifel/git-auto-commit-action@v4
34
with:
src/__tests__/main.test.ts
@@ -68,7 +68,7 @@ for (const entry of fs.readdirSync(FIXTURES)) {
68
69
return parser.positionAt(offset);
70
};
71
- const tagStack: Ranges.OpenTagName[] = [];
+ const tagStack: Ranges.Template[] = [];
72
const parser = createParser({
73
onError(range) {
74
addRange(`error(${ErrorCode[range.code]}:${range.message})`, range);
0 commit comments