From 9fee298e2a66970f55ed3c9ca57e92601aa86194 Mon Sep 17 00:00:00 2001 From: Mark Elphinstone Date: Mon, 25 Sep 2023 13:37:07 +0100 Subject: [PATCH 1/3] fix: add jest ignore line --- tsconfig.build.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index f324ace..5a2dd2e 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,7 +1,4 @@ { "extends": "./tsconfig", - "exclude": [ - "example", - "website" - ] -} \ No newline at end of file + "exclude": ["example", "website", "jest.config.ts"] +} From e1864a8cc46e3b2170007054dace375b652698ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Pereira?= Date: Tue, 3 Oct 2023 18:23:33 -0300 Subject: [PATCH 2/3] chore: update sonar cloud on pipeline --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fcd922..aaa36d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,14 +12,14 @@ jobs: steps: - name: Git checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - - name: Use Node.js Version 16.x - uses: actions/setup-node@v2 + - name: Use Node.js Version 18.x + uses: actions/setup-node@v3 with: - node-version: 16.14.x + node-version: 18.18.x - name: Install dependencies run: yarn install --frozen-lockfile @@ -40,7 +40,7 @@ jobs: run: yarn prepack - name: SonarCloud Scan Typescript - run: yarn sonar + uses: SonarSource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} From 09964e3adf5e624c300feac0a11dc016cb13c893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A1bio=20Pereira?= Date: Fri, 3 Nov 2023 12:35:55 -0300 Subject: [PATCH 3/3] chore: bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1c6e022..6732099 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-native-pitch-detector", - "version": "0.1.5", + "version": "0.1.6", "description": "High performance real time pitch detection.", "main": "lib/commonjs/index", "module": "lib/module/index",