Skip to content

Commit 8c02710

Browse files
committed
fix: ci job to find outdated deps, updated deps, removed empty jsdoc
1 parent 2fc8312 commit 8c02710

File tree

4 files changed

+56
-64
lines changed

4 files changed

+56
-64
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
typescript,prettier
7474
7575
run-npm-outdated:
76-
name: Check for outdated packages with npm outdated
76+
name: Check for outdated packages with npm outdated and npm-check-updates
7777
runs-on: ubuntu-latest
7878

7979
steps:
@@ -83,6 +83,7 @@ jobs:
8383
node-version: 18
8484
- run: npm ci
8585
- run: npm outdated
86+
- run: npx npm-check-updates
8687

8788
# TODO: check project builds/compiles correctly
8889
# TODO: add tests

package-lock.json

Lines changed: 48 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@
4747
"react-native-gesture-handler": "^2.12.1"
4848
},
4949
"devDependencies": {
50-
"@types/react": "^18.2.16",
50+
"@types/react": "^18.2.20",
5151
"@types/react-native": "^0.72.2",
52-
"@typescript-eslint/eslint-plugin": "^6.2.0",
53-
"@typescript-eslint/parser": "^6.2.0",
54-
"eslint": "^8.45.0",
52+
"@typescript-eslint/eslint-plugin": "^6.4.1",
53+
"@typescript-eslint/parser": "^6.4.1",
54+
"eslint": "^8.47.0",
5555
"eslint-config-airbnb": "^19.0.4",
5656
"eslint-config-airbnb-typescript": "^17.1.0",
5757
"eslint-config-prettier": "^9.0.0",
5858
"eslint-plugin-eslint-comments": "^3.2.0",
59-
"eslint-plugin-import": "^2.27.5",
60-
"eslint-plugin-jsdoc": "^46.4.4",
59+
"eslint-plugin-import": "^2.28.1",
60+
"eslint-plugin-jsdoc": "^46.5.0",
6161
"eslint-plugin-json": "^3.1.0",
6262
"eslint-plugin-jsx-a11y": "^6.7.1",
6363
"eslint-plugin-react": "7.33.2",

src/components/ListEmpty.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@ import React, { memo } from 'react';
22

33
import { Text, View } from 'react-native';
44

5-
/**
6-
*
7-
* @param root0
8-
* @param root0.loading
9-
* @param root0.message
10-
* @param root0.ActivityIndicatorComponent
11-
* @param root0.listMessageContainerStyle
12-
* @param root0.listMessageTextStyle
13-
*/
145
function ListEmpty({
156
loading,
167
message,

0 commit comments

Comments
 (0)