Skip to content

Commit

Permalink
🚀 Bump new version v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
1fabiopereira committed Jun 19, 2022
1 parent 247c610 commit 42c2a9d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 13 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ jobs:
with:
node-version: 16.14.x

- name: Install dependencies
run: yarn install --frozen-lockfile

# Config java sdk version
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

- name: Install dependencies
run: yarn install --frozen-lockfile

# Perform type check
- name: Type check
run: yarn type-check
Expand All @@ -36,12 +35,12 @@ jobs:
- name: Lint
run: yarn lint

# Run tests type check
- name: Tests
# Run Jest Unit Tests
- name: Run Jest Unit Tests
run: yarn test

# Run Gradle unit testing
- name: Run Gradle Unit Testing
# Run Gradle unit Tests
- name: Run Gradle Unit Tests
run: |
cd android/
./gradlew testDebugUnitTest --console verbose
Expand Down
17 changes: 14 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,17 @@ jobs:
#
# This example is using NPM's registry. If you were publishing to GitHub's
# Package registry, you'd use `https://npm.pkg.github.com` instead.
- name: Set node version
- name: Use Node.js Version 16.x
uses: actions/setup-node@v2
with:
always-auth: true
node-version: 16.14.x
registry-url: 'https://registry.npmjs.org'

- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'

# Perform installs dependencies
- name: Install dependencies
Expand All @@ -46,10 +51,16 @@ jobs:
- name: Lint
run: yarn lint

# Run tests type check
- name: Tests
# Run Jest Unit Tests
- name: Run Jest Unit Tests
run: yarn test

# Run Gradle unit Tests
- name: Run Gradle Unit Tests
run: |
cd android/
./gradlew testDebugUnitTest --console verbose
# Perform build project
- name: Build
run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-pdf-extractor-example",
"description": "Example app for react-native-pdf-extractor",
"version": "0.0.1",
"version": "0.1.0",
"private": true,
"scripts": {
"android": "react-native run-android",
Expand Down
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-pdf-extractor",
"version": "0.1.0-alpha.3",
"version": "0.1.0",
"description": "This library allows you to extract pdfs file data using matches specifics patterns.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
Expand Down

0 comments on commit 42c2a9d

Please sign in to comment.