From 4090980a6c82173ce71aea85577cecfcba063b30 Mon Sep 17 00:00:00 2001 From: Mac Date: Tue, 16 Apr 2024 02:01:05 +0530 Subject: [PATCH] feat: update readme --- .github/workflows/build.yml | 3 --- README.md | 2 +- sonar-project.properties | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6f093a8..cc07384 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,9 +24,6 @@ jobs: skip-step: install test-script: yarn test - - name: Tests - run: npm run test - - name: SonarQube Scan uses: sonarsource/sonarqube-scan-action@master env: diff --git a/README.md b/README.md index 45e51c9..e63907e 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ The React Native Template contains: - [Redux](https://redux.js.org/) (v4.0.1) to help manage state - [Redux Persist](https://github.com/rt2zz/redux-persist) (v5.10.0) to persist the Redux state - [Redux Sagas](https://redux-saga.js.org) (v1.0.2) to separate side-effects and logic from state and UI logic -- [React Navigation](https://reactnavigation.org/) (v3.11.2) with a [`NavigationService`](app/services/NavigationService.js) to handle routing and navigation in the app, with a splash screen setup by default +- [React Navigation](https://reactnavigation.org/) (v3.11.2) with a [`NavigationService`](app/services/navigationService.js) to handle routing and navigation in the app, with a splash screen setup by default - [reduxsauce](https://github.com/infinitered/reduxsauce) (v1.0.1) to facilitate using Redux - [apisauce](https://github.com/infinitered/apisauce/) to make API calls (v0.19.0) - [prettier](https://prettier.io/) and [eslint](https://eslint.org/) preconfigured for React Native diff --git a/sonar-project.properties b/sonar-project.properties index c710942..834bba6 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -2,7 +2,7 @@ sonar.projectKey=wednesday-solutions_react-native-template_AY7hdnRSB2n8RRmGoU2M sonar.language=js sonar.sources=. sonar.tests=app -sonar.exclusions=**/android/**,**/ios/**,**/node_modules/** +sonar.exclusions=**/android/**,**/ios/**,**/tests/**/*.* sonar.test.inclusions=**/*.test.js sonar.javascript.lcov.reportPaths=./coverage/lcov.info sonar.testExecutionReportPaths=./reports/test-report.xml