Skip to content

Commit

Permalink
Merge pull request #36 from 1fabiopereira/develop
Browse files Browse the repository at this point in the history
Merge develop into main
  • Loading branch information
1fabiopereira authored Nov 3, 2023
2 parents b70fc00 + 09964e3 commit 5c775a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
7 changes: 2 additions & 5 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "./tsconfig",
"exclude": [
"example",
"website"
]
}
"exclude": ["example", "website", "jest.config.ts"]
}

0 comments on commit 5c775a2

Please sign in to comment.