mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* NG-16 - migration step 1 * NG16 - fixed the builds * [MIGRATION] - Switching off no empty functions rule * [MIGRATION] - Somehow the fix for the cli types got lost * [MIGRATION] - Something happened on the way to heaven * [MIGRATION] - Ok this is weird * [MIGRATION] - Ok this is really weird * [MIGRATION] - change selector for expanded expansion panel content * [MIGRATION] - storybook chips related e2e fails fix, unit alignments * [MIGRATION] - Ok this is really weird * [MIGRATION] - Updating outdated packages * [MIGRATION] - updated deps for process cloud * [MIGRATION] - Rebased to latest * [MIGRATION] - Fixed lint * [MIGRATION] - Fixed package version * Rebased with lastest changes * [MIGRATION] - check to update the script * [MIGRATION] - rebased after the move of AlfrescoApiService * [MIGRATION] - fixed schematics build * [MIGRATION] - the lesson is : do not change what is already working * Rebased to latestp * Fixes after CR (#10202) * Fixed white background issue in sidenav after ng16 upgrade (#10207) * [MIGRATION] fix header background color not being read from input prop * Fixed build * Rebased * Fix package version after release * Thanks apollo deps * custom theme missing sidenav color * fix filter subscript overlapping dropdown items * [ACS-8749] View More tags button no longer shows when all tags are removed from a node (#10285) * [ACS-8741] Sidenav text for Process and Task filters is now grey (#10284) * AAE-26037 Moved permissions role selector styles to a dedicated file (#10297) * Removed fallback and starting using simple token * Removed fallback and starting using simple token * Fixed related unit test * Fixed related unit test * Writing should use the same calss as reading * Fixed unit tests for insights * Fixed unit tests for insights * Added fallback for JWT token * Added fallback for JWT token * Auto import fix * Added fallback for injection * Added fallback for injection * Trying to fix JWT token issue * Fixed unit tests * Fixed unit tests * Fixed style for collaborators * fixed permission row height * AAE-26163 Fix infinite loop when authentication error event occured (#10272) * AAE-26163 Logout user after 3 login attempts failed, avoiding infinite loop when an authentication error occured, like when a user machine clock is significantly out of sync * AAE-26163 Wait to discovery document to be loaded and user not authenticated to perform a ssoLogin, logout user if login fails after 3 attempts * AAE-26163 Fix missed id_token_hint invoking logout when a login error occured due to a clock significantly out of sync * AAE-26163 Add fake observable to unit test * AAE-26163 Show oauth event logs if showDebugInformation is enabled, remove auth items if access token is not valid * AAE-26163 Improve tryLogin error message * AAE-26163 Check if token has expired to fix case when user access the application after the token is expired and with a clock significantly out of sync * AAE-26163 Test logout when clock is out of sync * AAE-26163 Create a service to check if local machine time is out of sync * AAE-26163 Update oauthErrorEvent$ and combinedOAuthErrorsStream$ to return errors * AAE-26163 Output error within combined oauth error event subscription * AAE-26163 Fix lint problems * AAE-26163 Logout user when token refresh error happens for the second time, if the token is not refreshed properly after first refresh error * AAE-26163 Logout user once an oauth error event occur due to clock out of sync * AAE-26163 Fix retry login error message if the OAuthErrorEvent doesn t return reason * AAE-26163 Fix the issue where the logout API call is canceled by the authorize call when login fails due to clock synchronization problems, causing an infinite loop. * remove console.log * AAE-26163 Fix retry login error message if the OAuthErrorEvent reason is an empty object * Updating dependencies * Fixed subject complete to avoid calling a reset event when complete --------- Co-authored-by: Wojciech Duda <69160975+wojd0@users.noreply.github.com> Co-authored-by: dominikiwanekhyland <141320833+dominikiwanekhyland@users.noreply.github.com> Co-authored-by: swapnil-verma-gl <92505353+swapnil-verma-gl@users.noreply.github.com> Co-authored-by: Ehsan Rezaei <ehsan.rezaei@hyland.com> Co-authored-by: Amedeo Lepore <amedeo.lepore@hyland.com>
298 lines
12 KiB
YAML
298 lines
12 KiB
YAML
name: "pull-request"
|
||
|
||
on:
|
||
workflow_call:
|
||
inputs:
|
||
dry-run-flag:
|
||
description: 'enable dry-run on artifact push'
|
||
required: false
|
||
type: boolean
|
||
default: true
|
||
devel:
|
||
description: 'devel'
|
||
required: false
|
||
type: boolean
|
||
default: false
|
||
cron-run:
|
||
description: 'disables jobs which should not run when cron runs e2es'
|
||
required: false
|
||
type: boolean
|
||
default: false
|
||
pull_request:
|
||
types: [opened, synchronize, reopened]
|
||
branches:
|
||
- develop
|
||
- master
|
||
- develop-patch*
|
||
- master-patch*
|
||
|
||
concurrency:
|
||
group: ${{ github.workflow }}-${{ github.ref }}
|
||
cancel-in-progress: true
|
||
|
||
env:
|
||
BASE_REF: ${{ github.base_ref }}
|
||
HEAD_REF: ${{ github.head_ref }}
|
||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||
GITHUB_BRANCH: ${{ github.ref_name }}
|
||
GH_BUILD_DIR: ${{ github.workspace }}
|
||
GH_COMMIT: ${{ github.sha }}
|
||
BUILD_ID: ${{ github.run_id }}
|
||
GH_RUN_NUMBER: ${{ github.run_attempt }}
|
||
GH_BUILD_NUMBER: ${{ github.run_id }}
|
||
JOB_ID: ${{ github.run_id }}
|
||
LOG_LEVEL: "ERROR"
|
||
S3_BUILD_BUCKET_SHORT_NAME: ${{ secrets.S3_BUILD_BUCKET_SHORT_NAME }}
|
||
NODE_OPTIONS: "--max-old-space-size=5120"
|
||
DOCKER_REPOSITORY_DOMAIN: ${{ secrets.DOCKER_REPOSITORY_DOMAIN }}
|
||
DOCKER_REPOSITORY_USER: ${{ secrets.DOCKER_REPOSITORY_USER }}
|
||
DOCKER_REPOSITORY_PASSWORD: ${{ secrets.DOCKER_REPOSITORY_PASSWORD }}
|
||
DOCKER_REPOSITORY_STORYBOOK: "${{ secrets.DOCKER_REPOSITORY_DOMAIN }}/alfresco/storybook"
|
||
REPO_OWNER: "Alfresco"
|
||
REPO_NAME: "alfresco-ng2-components"
|
||
STORYBOOK_DIR: "./dist/storybook/stories"
|
||
BUILT_LIBS_DIR: "./dist/libs"
|
||
NODE_MODULES_DIR: "./node_modules"
|
||
REDIRECT_URI: /
|
||
|
||
jobs:
|
||
pre-checks:
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
|
||
- name: Ensure SHA pinned actions
|
||
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@0901cf7b71c7ea6261ec69a3dc2bd3f9264f893e # v3.0.12
|
||
|
||
- name: Check package-lock.json version
|
||
run: |
|
||
if [[ $(jq '.lockfileVersion == 3' package-lock.json) == "true" ]] ; then
|
||
echo "package-lock.json has a correct version"
|
||
else
|
||
echo "package-lock must be version 3"
|
||
exit 1
|
||
fi
|
||
|
||
check-if-pr-is-approved:
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
with:
|
||
fetch-depth: 0
|
||
|
||
- name: Get branch name
|
||
uses: Alfresco/alfresco-build-tools/.github/actions/get-branch-name@21fb2cdff9e78dae9d11604252d778c2f1af8a43 # v7.1.1
|
||
|
||
- name: Save commit message
|
||
uses: Alfresco/alfresco-build-tools/.github/actions/get-commit-message@21fb2cdff9e78dae9d11604252d778c2f1af8a43 # v7.1.1
|
||
|
||
- name: ci:force flag parser
|
||
shell: bash
|
||
run: |
|
||
if [ "${{ github.event_name }}" == "schedule" ] || [ "${{ github.actor }}" == "dependabot[bot]" ]; then
|
||
echo -e "\033[32mci:force check can be skipped\033[0m"
|
||
skip_check="true"
|
||
elif [[ "$COMMIT_MESSAGE" == *"[ci:force]"* ]]; then
|
||
echo -e "\033[32m[ci:force] flag detected. No need for approval.\033[0m"
|
||
skip_check="true"
|
||
fi
|
||
|
||
- name: Get PR number
|
||
if: ${{ github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' }}
|
||
uses: kamatama41/get-pr-number-action@0bcaab5752c0b699149e74667c8ce2f764cbb7fa # v0.9.1
|
||
id: action
|
||
with:
|
||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
||
- name: show pr number
|
||
shell: bash
|
||
run: |
|
||
echo "PR: ${{ steps.action.outputs.number }}"
|
||
|
||
- name: check if pr is approved
|
||
env:
|
||
DEVEL_FLAG: ${{ inputs.devel }}
|
||
GH_TOKEN: ${{ github.token }}
|
||
skip_check: "false"
|
||
run: |
|
||
if [ "${{ github.event_name }}" == "schedule" ] || [ "${{ github.actor }}" == "dependabot[bot]" ]; then
|
||
echo -e "\033[32mci:force check can be skipped\033[0m"
|
||
skip_check="true"
|
||
elif [[ "$COMMIT_MESSAGE" == *"[ci:force]"* ]]; then
|
||
echo -e "\033[32m[ci:force] flag detected. No need for approval.\033[0m"
|
||
skip_check="true"
|
||
fi
|
||
|
||
if [ "${{ github.actor }}" == "dependabot[bot]" ] || [ "${{ github.actor }}" == "alfresco-build" ]; then
|
||
echo -e "\033[32mCommit by ${{ github.actor }}. No need for approval.\033[0m"
|
||
skip_check="true"
|
||
fi
|
||
if [ "${{ github.event_name }}" == "schedule" ] || [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
|
||
echo -e "\033[32mSchedule event\033[0m"
|
||
skip_check="true"
|
||
fi
|
||
|
||
if [[ "$DEVEL_FLAG" == "true" ]]; then
|
||
echo -e "\033[32mDevel flag\033[0m"
|
||
skip_check="true"
|
||
fi
|
||
|
||
if [ "$skip_check" == "false" ]; then
|
||
echo "Checking PR approval"
|
||
prNumber=${{ steps.action.outputs.number }}
|
||
echo "PR: $prNumber"
|
||
checkApproval=$(gh api /repos/$GITHUB_REPOSITORY/pulls/$prNumber/reviews | jq '.[] | select(.state == "APPROVED") | .user.login')
|
||
if [[ $checkApproval ]]; then
|
||
echo -e "\033[32mPR approved\033[0m"
|
||
else
|
||
echo -e "\033[31mPR NOT approved\033[0m"
|
||
exit 1
|
||
fi
|
||
fi
|
||
|
||
setup:
|
||
# long timeout required when cache has to be recreated
|
||
timeout-minutes: 30
|
||
name: "Setup"
|
||
runs-on: ubuntu-latest
|
||
needs: [check-if-pr-is-approved, pre-checks]
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
with:
|
||
fetch-depth: 0 # Fetch all history for all tags and branches
|
||
- uses: ./.github/actions/setup
|
||
- name: install
|
||
run: |
|
||
npm ci
|
||
npx nx run js-api:bundle
|
||
npx nx run cli:bundle
|
||
npx nx run testing:bundle
|
||
- uses: ./.github/actions/upload-node-modules-and-artifacts
|
||
|
||
unit-tests:
|
||
timeout-minutes: 30
|
||
name: "Unit tests: ${{ matrix.unit-tests.name }}"
|
||
runs-on: ubuntu-latest
|
||
needs: [setup]
|
||
strategy:
|
||
fail-fast: false
|
||
# max-parallel: 4
|
||
matrix:
|
||
unit-tests:
|
||
- name: js-api
|
||
exclude: "core,insights,content-services,process-services,process-services-cloud,eslint-plugin-eslint-angular"
|
||
- name: content-services
|
||
exclude: "insights,core,extensions,process-services,process-services-cloud,eslint-plugin-eslint-angular,js-api"
|
||
- name: core
|
||
exclude: "insights,content-services,process-services,process-services-cloud,eslint-plugin-eslint-angular,js-api"
|
||
- name: insights
|
||
exclude: "core,extensions,content-services,process-services-cloud,process-services,eslint-plugin-eslint-angular,js-api"
|
||
- name: process-services
|
||
exclude: "core,extensions,content-services,process-services-cloud,insights,eslint-plugin-eslint-angular,js-api"
|
||
- name: process-cloud
|
||
exclude: "insights,core,extensions,content-services,process-services,eslint-plugin-eslint-angular,js-api"
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
with:
|
||
fetch-depth: 0 # Fetch all history for all tags and branches
|
||
- uses: ./.github/actions/setup
|
||
- uses: ./.github/actions/download-node-modules-and-artifacts
|
||
- name: Run unit tests
|
||
run: |
|
||
/usr/bin/xvfb-run --auto-servernum npx nx affected:test $NX_CALCULATION_FLAGS --exclude=${{ matrix.unit-tests.exclude }}
|
||
|
||
lint:
|
||
# long timeout required when cache has to be recreated
|
||
timeout-minutes: 30
|
||
name: "Lint"
|
||
runs-on: ubuntu-latest
|
||
needs: [setup]
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
with:
|
||
fetch-depth: 0 # Fetch all history for all tags and branches
|
||
- uses: ./.github/actions/setup
|
||
- uses: ./.github/actions/download-node-modules-and-artifacts
|
||
- run: npx nx affected --target=lint $NX_CALCULATION_FLAGS
|
||
|
||
build-libs:
|
||
# long timeout required when cache has to be recreated
|
||
timeout-minutes: 30
|
||
name: "Build libs"
|
||
runs-on: ubuntu-latest
|
||
needs: [setup]
|
||
steps:
|
||
- name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
with:
|
||
fetch-depth: 0 # Fetch all history for all tags and branches
|
||
- uses: ./.github/actions/setup
|
||
- uses: ./.github/actions/download-node-modules-and-artifacts
|
||
- run: npx nx affected:build $NX_CALCULATION_FLAGS --prod
|
||
- run: npx nx affected --target=build-storybook $NX_CALCULATION_FLAGS --configuration=ci --parallel=1
|
||
- uses: ./.github/actions/upload-node-modules-and-artifacts
|
||
|
||
PR-forbidden-labels:
|
||
if: ${{ inputs.cron-run == '' || inputs.cron-run == 'false' }}
|
||
runs-on: ubuntu-latest
|
||
steps:
|
||
- id: checkoutRepo
|
||
name: Checkout repository
|
||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
with:
|
||
fetch-depth: 1
|
||
- name: PR contains forbidden labels
|
||
id: pr-forbidden
|
||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
||
with:
|
||
script: |
|
||
const issueHasLabels = require('./scripts/github/update/check-issue-has-label.js');
|
||
const checkLabels = ['next version ➡️', 'do not merge🙅🏻♂️'];
|
||
|
||
const hasLabel = await issueHasLabels({github, context, checkLabels})
|
||
|
||
if(hasLabel) {
|
||
core.setFailed('The PR contains a forbidden label! You are not allowed to merge until the label is there.');
|
||
}
|
||
- name: Check value after
|
||
run: |
|
||
echo "result ${{ toJson(steps.pr-forbidden.*.result) }}" && echo "result ${{ steps.pr-forbidden.*.result }}"
|
||
echo "result ${{ contains(toJson(steps.pr-forbidden.*.result), 'failure') }}"
|
||
|
||
finalize:
|
||
if: ${{ always() }}
|
||
runs-on: ubuntu-latest
|
||
name: Final Results
|
||
needs: [check-if-pr-is-approved, pre-checks, setup, unit-tests, lint, build-libs]
|
||
steps:
|
||
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
||
- name: identify-slack-group
|
||
id: groups
|
||
if: ${{ github.event_name == 'schedule' }}
|
||
uses: ./.github/actions/slack-group-area
|
||
with:
|
||
affected: ${{ steps.e2e-result.outputs.result }}
|
||
- uses: slackapi/slack-github-action@37ebaef184d7626c5f204ab8d3baff4262dd30f0 # v1.27.0
|
||
name: Nofify QA failure
|
||
if: ${{ github.event_name == 'schedule' && contains(needs.*.result, 'failure') }}
|
||
env:
|
||
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
|
||
with:
|
||
channel-id: 'C016SMNNL8L' #guild-channel
|
||
slack-message: "🔴 Warning: The daily ADF cronjob failed\nWorkflow run : <https://github.com/Alfresco/alfresco-ng2-components/actions/runs/${{ github.run_id }}| here>\nDetails: ${{ steps.e2e-result.outputs.result }}\nArea: ${{ steps.groups.outputs.groups}}"
|
||
- name: workflow failure
|
||
run: exit 1
|
||
if: ${{ contains(needs.*.result, 'failure') }}
|
||
- name: workflow canceled
|
||
run: exit 1
|
||
if: ${{ contains(needs.*.result, 'cancelled') }}
|
||
- name: workflow success
|
||
run: exit 0
|
||
if: ${{ contains(needs.*.result, 'success') }}
|