Skip to content

Commit

Permalink
fix: issue with test type, and ensure build runs in CI (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey authored Jun 22, 2022
1 parent ca969ba commit 963c28d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
run: npm ci
- name: Format Code
run: npm run format
- name: Build Code
run: npm run build
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ for (const entry of fs.readdirSync(FIXTURES)) {

return parser.positionAt(offset);
};
const tagStack: Ranges.OpenTagName[] = [];
const tagStack: Ranges.Template[] = [];
const parser = createParser({
onError(range) {
addRange(`error(${ErrorCode[range.code]}:${range.message})`, range);
Expand Down

0 comments on commit 963c28d

Please sign in to comment.