-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(android): support for content-length in fetch request (#105)
Co-authored-by: Joseph Pender <[email protected]>
- Loading branch information
1 parent
e9dad48
commit 7adb608
Showing
6 changed files
with
41 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@capacitor/background-runner": minor | ||
--- | ||
|
||
(Android) Adding support for Content-Length in fetch requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
name: "Build Packages" | ||
|
||
on: | ||
on: | ||
workflow_call: | ||
secrets: | ||
CAP_GH_RELEASE_TOKEN: | ||
required: true | ||
|
||
jobs: | ||
build: | ||
runs-on: 'ubuntu-22.04' | ||
runs-on: "ubuntu-22.04" | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} | ||
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }} | ||
|
||
- name: 'Setup Tools' | ||
- name: "Setup Tools" | ||
uses: ./.github/actions/setup-tools | ||
|
||
- uses: nrwl/nx-set-shas@v3 | ||
with: | ||
main-branch-name: 'main' | ||
main-branch-name: "main" | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
distribution: "temurin" | ||
java-version: "17" | ||
|
||
- name: 'Build Packages' | ||
- name: "Build Packages" | ||
shell: bash | ||
run: | | ||
pnpm nx affected --target=build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
name: "Lint Packages" | ||
|
||
on: | ||
on: | ||
workflow_call: | ||
secrets: | ||
CAP_GH_RELEASE_TOKEN: | ||
required: true | ||
|
||
jobs: | ||
lint: | ||
runs-on: 'macos-12' | ||
runs-on: "macos-12" | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.CAP_GH_RELEASE_TOKEN }} | ||
token: ${{ secrets.CAP_GH_RELEASE_TOKEN || github.token }} | ||
|
||
- name: 'Setup Tools' | ||
- name: "Setup Tools" | ||
uses: ./.github/actions/setup-tools | ||
|
||
- uses: nrwl/nx-set-shas@v3 | ||
with: | ||
main-branch-name: 'main' | ||
main-branch-name: "main" | ||
|
||
- name: 'Lint Packages' | ||
- name: "Lint Packages" | ||
shell: bash | ||
run: | | ||
pnpm nx affected --target=lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters