-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'wso2:master' into enable_federated_tokens
- Loading branch information
Showing
2,627 changed files
with
236,128 additions
and
122,307 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@wso2is/admin.connections.v1": patch | ||
--- | ||
|
||
Fix UI issue in outbound provisioning roles dropdown |
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# This workflow will build PRs submitted to the master branch. | ||
|
||
name: PR Builder | ||
name: 👷 PR Builder | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, synchronize, labeled ] | ||
branches: [ master ] | ||
paths-ignore: | ||
- "**.md" | ||
- "LICENSE" | ||
workflow_dispatch: | ||
|
||
# Avoid running multiple builds for the same PR. | ||
concurrency: | ||
|
@@ -21,6 +21,7 @@ env: | |
jobs: | ||
lint: | ||
name: ⬣ ESLint (STATIC ANALYSIS) | ||
if: ${{ github.event_name == 'pull_request' || github.event.label.name == 'trigger-pr-builder' }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
|
@@ -31,7 +32,6 @@ jobs: | |
id: checkout | ||
uses: actions/[email protected] | ||
with: | ||
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | ||
fetch-depth: 0 | ||
|
||
- name: 🟢 Setup node | ||
|
@@ -84,6 +84,7 @@ jobs: | |
|
||
typecheck: | ||
name: ʦ Typecheck (STATIC ANALYSIS) | ||
if: ${{ github.event.label.name == 'trigger-pr-builder' || github.event_name == 'pull_request'}} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
|
@@ -94,7 +95,6 @@ jobs: | |
id: checkout | ||
uses: actions/[email protected] | ||
with: | ||
# We need to fetch all branches and commits so that Nx affected has a base to compare against. | ||
fetch-depth: 0 | ||
|
||
- name: 🟢 Setup node | ||
|
@@ -138,12 +138,11 @@ jobs: | |
run: pnpm build:modules | ||
|
||
- name: ☄️ Check Type Errors | ||
run: pnpm nx affected --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} --plain --target=typecheck --parallel=3 | ||
run: pnpm nx affected --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} --target=typecheck --parallel=3 | ||
|
||
test: | ||
name: 👾 Unit Test (TESTING) | ||
if: false | ||
needs: [ lint, typecheck ] | ||
needs: [ typecheck ] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
|
@@ -186,7 +185,7 @@ jobs: | |
|
||
- name: 👷 Build Re-usable Modules | ||
id: build-reusable-modules | ||
run: pnpm build:modules | ||
run: pnpm build:modules | ||
|
||
- name: 🃏 Run Jest & Collect Coverage | ||
id: run-jest-test-and-coverage | ||
|
@@ -199,15 +198,42 @@ jobs: | |
pnpm nyc:text-summary-report | ||
pnpm nyc:text-report | ||
- name: Upload `@wso2is/core` coverage reports to Codecov | ||
id: upload-wso2is-core-coverage-1 | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./modules/core/coverage/coverage-final.json | ||
flags: '@wso2is/core' | ||
verbose: true | ||
|
||
- name: Upload `@wso2is/features` coverage reports to Codecov | ||
id: upload-wso2is-features-coverage-1 | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./features/coverage/coverage-final.json | ||
flags: '@wso2is/features' | ||
verbose: true | ||
|
||
- name: Upload `@wso2is/i18n` coverage reports to Codecov | ||
id: upload-wso2is-i18n-coverage-1 | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
files: ./modules/i18n/coverage/coverage-final.json | ||
flags: '@wso2is/i18n' | ||
verbose: true | ||
|
||
build: | ||
name: 🚧 Build | ||
needs: [ typecheck ] | ||
needs: [ test, typecheck ] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [ lts/* ] | ||
maven-version: [ 3.8.6 ] | ||
java-version: [ 1.8 ] | ||
java-version: [ 11 ] | ||
pnpm-version: [ 8.7.4 ] | ||
steps: | ||
- name: ⬇️ Checkout | ||
|
@@ -220,11 +246,12 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: ☕ Set up JDK 1.8 | ||
- name: ☕ Set up JDK 11 | ||
id: jdk-setup | ||
uses: actions/setup-java@v1 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: ${{ matrix.java-version }} | ||
distribution: "adopt" | ||
cache: maven | ||
|
||
- name: 🦩 Set up Maven | ||
|
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.