-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [#271]: Update `getAvatarImageByID` to include `contentType` in return type (#281) * [#271]: initial template added * [#271]: lint fix * [#271]: fixes added * [#271]: getAvatarImageByID updated for version2 * [#271]: test project name updated * NodeJS 10 version life was ended * JWT and OAuth auths removed (#284) * JWT and OAuth auths removed * XOR3 added * unit tests fixed * build fixed * Deprecation stuff removed (#283) * agile deprecation stuff removed * version2 deprecation stuff removed * test fixes * version3 deprecated properties removed * no-namespaces rule applied * integration tests fixes * old stuff removed * newErrorHandling removed * avatar api updates (#286) * parameters types improvements * parameters types improvements * build fix * parameters types improvements * CHANGELOG.md updated
- Loading branch information
1 parent
6b764e1
commit 7d8bffb
Showing
747 changed files
with
1,728 additions
and
8,339 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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
steps: | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Use Node.js 16.x.x | ||
- name: Use Node.js 18.x.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
@@ -52,11 +52,8 @@ jobs: | |
run: npm run test:integration | ||
|
||
publish: | ||
name: Publish | ||
name: Package publish | ||
needs: | ||
- build | ||
- lint | ||
- test_unit | ||
- test_integration | ||
runs-on: self-hosted | ||
steps: | ||
|
@@ -67,6 +64,8 @@ jobs: | |
|
||
publish-docs: | ||
name: Docs publish | ||
needs: | ||
- test_integration | ||
runs-on: self-hosted | ||
steps: | ||
- name: Checkout code | ||
|
@@ -85,6 +84,10 @@ jobs: | |
- name: Generate docs | ||
run: npm run doc | ||
|
||
- name: Extract version | ||
id: pkg | ||
run: echo "::set-output name=version::$(node -p "require('./package.json').version")" | ||
|
||
- name: Checkout docs branch | ||
uses: actions/checkout@v4 | ||
with: | ||
|
@@ -100,5 +103,5 @@ jobs: | |
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git add . | ||
git commit -m "Update documentation" | ||
git commit -m "Update documentation for version v${{ steps.pkg.outputs.version }}" | ||
git push |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.