Skip to content

Commit

Permalink
feat: Client testing with vitest and CI
Browse files Browse the repository at this point in the history
  • Loading branch information
shivarm committed Sep 30, 2024
1 parent c9fa7cb commit e8c2d65
Show file tree
Hide file tree
Showing 23 changed files with 3,636 additions and 1,537 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
run: npm install
working-directory: ./client

- name: Test
run: npm run test
working-directory: ./client

- name: Build
run: npm run build --if-present
working-directory: ./client
1 change: 1 addition & 0 deletions client/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export default [
{ allowConstantExport: true },
],
'react/prop-types': 'off',
'no-unused-vars': ['error', { varsIgnorePattern: 'React' }],
},
},
];
Loading

0 comments on commit e8c2d65

Please sign in to comment.