Fix: Resolve custom effects misconfiguration for Angie [ED-23280] #75593
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: Qunit | |
| on: | |
| pull_request: | |
| paths: | |
| - '**/*.jsx?' | |
| - '**/*.tsx?' | |
| - '**/*.json' | |
| - 'package.json' | |
| - 'package-lock.json' | |
| - '.github/workflows/js-qunit.yml' | |
| merge_group: | |
| # This allows a subsequently queued workflow run to interrupt previous runs | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| q-unit: | |
| runs-on: ubuntu-latest | |
| name: Qunit - Test | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| cache: npm | |
| - name: Install Dependencies | |
| run: npm run install:ci | |
| - name: "Build Scripts" | |
| run: npm run build:ci | |
| - name: "Run Qunit" | |
| run: npx grunt karma:unit |