Skip to content

Commit

Permalink
feat: user package
Browse files Browse the repository at this point in the history
  • Loading branch information
manchuck committed Aug 9, 2023
1 parent f04c595 commit 5193370
Show file tree
Hide file tree
Showing 40 changed files with 1,749 additions and 657 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
node-version: ${{ matrix.node }}

- name: Install typescript
run: npm install -g typescript npm${{ matrix.npm_version }} && npm install
run: npm install -g typescript npm${{ matrix.npm_version }} --no-optional && npm install --no-optional

- name: Lint, Compile, Test
run: npm run compile && npm run test -- --coverage --verbose --maxWorkers=2
Expand Down
5 changes: 5 additions & 0 deletions jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ const config: Config.InitialOptions = {
testMatch: ['<rootDir>/packages/subaccounts/__tests__/**/*.test.ts'],
coveragePathIgnorePatterns: ['node_modules', '__tests__'],
},
{
displayName: 'USER',
testMatch: ['<rootDir>/packages/user/__tests__/**/*.test.ts'],
coveragePathIgnorePatterns: ['node_modules', '__tests__'],
},
{
displayName: 'VERIFY',
testMatch: ['<rootDir>/packages/verify/__tests__/**/*.test.ts'],
Expand Down
Loading

0 comments on commit 5193370

Please sign in to comment.