Skip to content

Commit 5b8d6ec

Browse files
authored
chore: add lint check to CI (#109)
1 parent 0b8fd40 commit 5b8d6ec

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
with:
3333
run_install: true
3434

35+
- name: Run lint
36+
run: pnpm lint
37+
3538
- name: Build project
3639
run: pnpm build
3740

src/typescript/type-script-go-runner.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ function logOutput(logger: Pick<Logger, 'error'>, output: string) {
5959
}
6060

6161
function stripAnsi(output: string) {
62+
// rslint-disable-next-line no-control-regex
6263
return output.replace(/\u001b\[[0-?]*[ -/]*[@-~]/g, '');
6364
}
6465

0 commit comments

Comments
 (0)