Skip to content

Commit 9c7d14d

Browse files
committed
Install dependencies before Reassure
1 parent 4bcd420 commit 9c7d14d

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/reassurePerfTests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,21 @@ jobs:
2424
with:
2525
node-version-file: '.nvmrc'
2626

27-
- name: Run reassure baseline tests
27+
- name: Install dependencies
28+
run: npm install
29+
30+
- name: Run Reassure baseline tests
2831
run: npx reassure --baseline
2932

3033
- name: Checkout PR head SHA
3134
run: |
3235
git fetch origin ${{ github.event.pull_request.head.sha }} --no-tags --depth=1
3336
git switch --force --detach ${{ github.event.pull_request.head.sha }}
3437
35-
- name: Reinstall node_modules
38+
- name: Reinstall dependencies
3639
run: npm install --force
3740

38-
- name: Run reassure delta tests
41+
- name: Run Reassure delta tests
3942
run: npx reassure --branch
4043

4144
- name: Validate output.json

0 commit comments

Comments
 (0)