Skip to content

Commit 935948d

Browse files
committed
lint in CI
1 parent 962262f commit 935948d

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
@@ -25,6 +25,8 @@ jobs:
2525
node-version: ${{ matrix.node-version }}
2626
- run: npm install -g nyc
2727
- run: npm ci
28+
- run: npx tsc
29+
- run: npm run lint
2830
- run: npm run test:cover
2931
- uses: codecov/codecov-action@v5
3032
with:

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const compat = new FlatCompat({
1717
});
1818

1919
export default [{
20-
ignores: ["**/*.js"],
20+
ignores: ["**/*.js", "test/deno*", "test/bun*"],
2121
}, ...fixupConfigRules(compat.extends(
2222
"eslint:recommended",
2323
"plugin:@typescript-eslint/recommended",

0 commit comments

Comments
 (0)