We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bcd420 commit 9c7d14dCopy full SHA for 9c7d14d
1 file changed
.github/workflows/reassurePerfTests.yml
@@ -24,18 +24,21 @@ jobs:
24
with:
25
node-version-file: '.nvmrc'
26
27
- - name: Run reassure baseline tests
+ - name: Install dependencies
28
+ run: npm install
29
+
30
+ - name: Run Reassure baseline tests
31
run: npx reassure --baseline
32
33
- name: Checkout PR head SHA
34
run: |
35
git fetch origin ${{ github.event.pull_request.head.sha }} --no-tags --depth=1
36
git switch --force --detach ${{ github.event.pull_request.head.sha }}
37
- - name: Reinstall node_modules
38
+ - name: Reinstall dependencies
39
run: npm install --force
40
- - name: Run reassure delta tests
41
+ - name: Run Reassure delta tests
42
run: npx reassure --branch
43
44
- name: Validate output.json
0 commit comments