WEBUI-2040: Ability to adjust the width of the Browse pane, Search pane, and Information pane [LTS-2023] #6173
Workflow file for this run
This file contains hidden or 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
| name: Test | |
| on: | |
| pull_request: | |
| branches: | |
| - maintenance-3.1.x | |
| workflow_call: | |
| inputs: | |
| branch: | |
| description: 'Branch to test' | |
| default: maintenance-3.1.x | |
| type: string | |
| required: false | |
| secrets: | |
| NPM_PACKAGES_TOKEN: | |
| required: true | |
| SAUCE_ACCESS_KEY: | |
| required: false | |
| env: | |
| BRANCH_NAME: ${{ github.head_ref || inputs.branch || 'maintenance-3.1.x' }} | |
| jobs: | |
| unit-test: | |
| runs-on: | |
| group: medium-4cpu-runners | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: catchpoint/workflow-telemetry-action@v2 | |
| with: | |
| comment_on_pr: false | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ env.BRANCH_NAME }} | |
| - uses: actions/setup-node@v6 | |
| with: | |
| registry-url: 'https://packages.nuxeo.com/repository/npm-public/' | |
| scope: '@nuxeo' | |
| node-version: 22 | |
| - name: Cache npm dependencies | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.npm | |
| key: npm-${{ runner.os }}-${{ hashFiles('package.json', 'packages/nuxeo-web-ui-ftest/package.json', 'packages/nuxeo-designer-catalog/package.json') }} | |
| restore-keys: | | |
| npm-${{ runner.os }}- | |
| - name: Install | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | |
| run: npm ci --ignore-scripts | |
| - name: Ensure latest @nuxeo RC packages | |
| env: | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }} | |
| run: | | |
| ELEMENTS_VERSION=$( | |
| for pkg in @nuxeo/nuxeo-elements @nuxeo/nuxeo-ui-elements @nuxeo/nuxeo-dataviz-elements @nuxeo/testing-helpers; do | |
| npm view "$pkg" versions --json | jq -r '.[]' | |
| done | grep -E "3\.1\.[0-9]+-rc\.[0-9]+$" \ | |
| | sort | uniq -c | awk '$1 == 4 {print $2}' | sort -V | tail -n1 | |
| ) | |
| echo "Resolved latest nuxeo-elements RC: $ELEMENTS_VERSION" | |
| if [ -z "$ELEMENTS_VERSION" ]; then | |
| echo "::error::Could not resolve a common RC version across all @nuxeo packages" | |
| exit 1 | |
| fi | |
| npm install \ | |
| @nuxeo/nuxeo-elements@"$ELEMENTS_VERSION" \ | |
| @nuxeo/nuxeo-ui-elements@"$ELEMENTS_VERSION" \ | |
| @nuxeo/nuxeo-dataviz-elements@"$ELEMENTS_VERSION" \ | |
| @nuxeo/testing-helpers@"$ELEMENTS_VERSION" | |
| - name: Unit tests | |
| # package.json "test": runs generate-coverage-imports.js then `karma start --coverage` (Istanbul). | |
| # Disabling SauceLabs. Karma is not compatible with SauceLabs v4 | |
| # env: | |
| # SAUCE_USERNAME: nuxeo-web-ui | |
| # SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
| run: npm run test |