Skip to content

Commit ae76365

Browse files
committed
fix: add eslint command for debugging
1 parent 2ce4f6d commit ae76365

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

.github/workflows/check-pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
node-version: ${{ matrix.node-version }}
2626
- name: Install && Build - SDK and Sample App
2727
uses: ./.github/actions/install-and-build-sdk
28+
- name: ESLint
29+
run: yarn lerna-workspaces run eslint
2830
- name: Lint
2931
run: yarn lerna-workspaces run lint
3032
- name: Test

examples/SampleApp/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"start": "react-native start",
1313
"test": "jest",
1414
"lint": "eslint .",
15+
"eslint": "eslint .",
1516
"lint-fix": "eslint . --fix",
1617
"extract-changelog": "FILTER_PATH='examples/SampleApp' TAG_FORMAT=$npm_package_name'@v${version}' node ../../release/extract-changelog.js",
1718
"bootstrap": "yarn install",

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"release-next": "yarn lerna-workspaces run release-next",
3232
"extract-changelog": "rm -rf NEXT_RELEASE_CHANGELOG.md && yarn lerna-workspaces run extract-changelog",
3333
"bootstrap": "yarn lerna-workspaces run bootstrap",
34+
"eslint": "yarn lerna-workspaces run eslint",
3435
"lint": "yarn lerna-workspaces run lint",
3536
"lint-fix": "yarn lerna-workspaces run lint-fix",
3637
"build": "yarn lerna-workspaces run build",

0 commit comments

Comments
 (0)