Skip to content

Commit

Permalink
Merge pull request #1 from kuzzleio/feature/initial-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
fmauNeko authored Sep 10, 2024
2 parents 61f0739 + 1aa792e commit a44af91
Show file tree
Hide file tree
Showing 14 changed files with 7,983 additions and 4,076 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull_request.workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
- name: Run types tests
run: npm run test:types

functional-tests:
name: Functional Tests
unit-tests:
name: Unit tests
runs-on: ubuntu-latest
needs: [lint, check-types]
strategy:
Expand All @@ -67,5 +67,5 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Run functional Tests
run: npm run test:functional
- name: Run unit tests
run: npm run test:unit
1 change: 1 addition & 0 deletions .lintstagedrc.cjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
module.exports = {
'*.{js,ts}': 'eslint --fix',
'*.md': 'prettier --list-different',
};
9 changes: 9 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { type JestConfigWithTsJest, createDefaultPreset } from 'ts-jest';

const defaultPreset = createDefaultPreset();

const jestConfig: JestConfigWithTsJest = {
...defaultPreset,
};

export default jestConfig;
Loading

0 comments on commit a44af91

Please sign in to comment.