-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WEBUI-1268: inactive github pipeline for functional and accessibility…
… test cases
- Loading branch information
1 parent
4c22738
commit 56426b5
Showing
4 changed files
with
74 additions
and
50 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
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 |
---|---|---|
|
@@ -22,26 +22,34 @@ jobs: | |
with: | ||
branch: maintenance-3.1.x | ||
|
||
a11y: | ||
uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
secrets: | ||
NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
with: | ||
branch: maintenance-3.1.x | ||
|
||
ftest: | ||
uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
secrets: | ||
NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
with: | ||
branch: maintenance-3.1.x | ||
#================================================================================================================== | ||
# this line of code has been commented on due to some driver issues, we will resume it once WEBUI-1266 is resolved. | ||
#================================================================================================================== | ||
# a11y: | ||
# uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
# secrets: | ||
# NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
# PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
# PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
# with: | ||
# branch: maintenance-3.1.x | ||
#================================================================================================================== | ||
|
||
#================================================================================================================== | ||
# this line of code has been commented on due to some driver issues, we will resume it once WEBUI-1267 is resolved. | ||
#================================================================================================================== | ||
# ftest: | ||
# uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected] | ||
# secrets: | ||
# NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | ||
# PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }} | ||
# PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }} | ||
# with: | ||
# branch: maintenance-3.1.x | ||
#================================================================================================================== | ||
|
||
build: | ||
needs: [lint, test, a11y, ftest] | ||
needs: [lint, test] | ||
runs-on: [self-hosted, master] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|