Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ jobs:
run: npm run format

- name: Run Tests with Coverage
run: npm run coverage
run: CI=true npm run coverage

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Run type checks
run: npm run typecheck

- name: Build
run: npm run build
4 changes: 4 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import js from '@eslint/js';
import tsPlugin from '@typescript-eslint/eslint-plugin';
import tsParser from '@typescript-eslint/parser';
import simpleImportSort from 'eslint-plugin-simple-import-sort';
import licenseHeader from 'eslint-plugin-license-header';

export default [
{
Expand Down Expand Up @@ -45,6 +46,7 @@ export default [
plugins: {
'@typescript-eslint': tsPlugin,
'simple-import-sort': simpleImportSort,
'license-header': licenseHeader,
},
rules: {
...js.configs.recommended.rules,
Expand All @@ -53,6 +55,8 @@ export default [
'simple-import-sort/exports': 'error',
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-explicit-any': 'error',

'license-header/header': ['error', './resources/license-header.js'],
},
},
];
19 changes: 0 additions & 19 deletions jest.config.ts

This file was deleted.

Loading
Loading