We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e37df04 commit aa26d69Copy full SHA for aa26d69
.github/workflows/ci.yml
@@ -57,9 +57,14 @@ jobs:
57
- run: npm ci
58
59
- name: Tests
60
+ id: test
61
# run tests, but lint separately
62
run: npm run test -- --no-lint --bundle=${{ matrix.bundle }}
63
64
+ - name: Print baseline diff on failure
65
+ if: ${{ failure() && steps.test.conclusion == 'failure' }}
66
+ run: git diff --no-index -- ./tests/baselines/reference ./tests/baselines/local
67
+
68
lint:
69
runs-on: ubuntu-latest
70
0 commit comments