Skip to content

Commit

Permalink
fix: add linting to workflows and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh committed Apr 15, 2024
1 parent ea39d2e commit f52f77f
Show file tree
Hide file tree
Showing 4 changed files with 622 additions and 1,378 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,8 @@ jobs:
with:
cypress: false

# type check
- name: Type-check code
run: tsc --noEmit
- name: Lint and type-check code
run: yarn check

- name: Build App
run: yarn build
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@
"@types/katex": "^0.16.7",
"@types/lodash.isarray": "^4.0.9",
"@types/lodash.truncate": "^4.4.9",
"@types/node": "^20.11.30",
"@types/node": "^20.12.7",
"@types/react": "18.2.77",
"@types/react-dom": "^18.2.22",
"@types/react-dom": "^18.2.25",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
Expand Down
2 changes: 1 addition & 1 deletion src/modules/rightPanel/SideContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
ItemType,
getIdsFromPath,
} from '@graasp/sdk';
import { useMobileView } from '@graasp/ui';

import { usePlayerTranslation } from '@/config/i18n';
import { hooks } from '@/config/queryClient';
Expand All @@ -27,7 +28,6 @@ import {
ITEM_PINNED_ID,
} from '../../config/selectors';
import SideDrawer from './SideDrawer';
import { useMobileView } from '@graasp/ui';

const StyledMain = styled('div', {
shouldForwardProp: (propName) => propName !== 'isShifted',
Expand Down
Loading

0 comments on commit f52f77f

Please sign in to comment.