Skip to content

Commit ca40123

Browse files
authored
[CSL-1840] Run Diffend on PR Creation (#222)
1 parent 9807296 commit ca40123

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.diffend.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
project_id: '93e196ff-e7b2-41e2-99e7-ac3d0ad682d9'
2+
shareable_id: 'a81495ba-ad9a-48b6-952a-0a296e0df8e7'
3+
shareable_key: '3869d2fc-a408-48cb-8ea0-9bdd4b7fab62'

.github/workflows/run-diffend.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Run Diffend
2+
on:
3+
pull_request:
4+
branches:
5+
- "**"
6+
concurrency:
7+
group: run-diffend-${{ github.head_ref }}
8+
cancel-in-progress: true
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
matrix:
14+
node: ["16.17.0"]
15+
steps:
16+
- name: Check out code
17+
uses: actions/checkout@v3
18+
- name: Set up node
19+
uses: actions/setup-node@v2
20+
with:
21+
node-version: ${{ matrix.node }}
22+
- name: Install Diffend (Mend)
23+
run: npm install -g https://my.diffend.io/releases/npm/stable.tgz
24+
- name: Install dependencies with Diffend
25+
run: diffend npm install
26+

0 commit comments

Comments
 (0)