[CDX-281] Mark itemName as optional in trackSearchResultClick #556
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: Run Diffend | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: run-diffend-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Diffend doesn't work with newer versions of Node/NPM | |
| node: ["18.13.0"] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v3 | |
| - name: Set up node | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install Diffend (Mend) | |
| run: npm install -g https://my.diffend.io/releases/npm/stable.tgz | |
| - name: Install dependencies with Diffend | |
| run: diffend npm install | |