Skip to content

Commit 8dcbd11

Browse files
authored
Tell Dependabot to ignore higher versions of chai and pixelmatch (#7159)
* Don't try to update chai higher than 4.x.x. Updating chai seems to cause the ts checks to fail. Based on [this comment](chaijs/chai#1568 (comment)) and others in an issue thread in the Chai project repo, version 5.0.0 and higher of chai requires a ceratin type of module use. Perhaps this is the reason why the tests fail for us -- I can't tell without looking more closely. Right now, this is not an essential update to do, and we need to stop Dependabot trying to update this every time it runs. * Don't try to update pixelmatch higher than 5.3.0
1 parent a9c9009 commit 8dcbd11

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/dependabot.yml

+5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ updates:
4545
schedule:
4646
interval: "monthly"
4747
versioning-strategy: "widen"
48+
ignore:
49+
- dependency-name: "chai"
50+
versions: [">= 5.0.0"]
51+
- dependency-name: "pixelmatch"
52+
versions: ["> 5.3.0"]
4853
groups:
4954
# Group non-security version minor & patch updates into one PR.
5055
# Security and major update versions will be done as individual PRs.

0 commit comments

Comments
 (0)