[CI-3858] Resolve body with task_id
on mutating items and variations functions
#190
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
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: | |
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 |