diff options
author | Peter Bengtsson <mail@peterbe.com> | 2021-03-16 10:31:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 15:31:35 +0100 |
commit | 56d05b0f0e6e89389c1a3c23084dffe8a573c6f4 (patch) | |
tree | a3e3e453e62d2d86e936d5c55c388109ca3478bc /.github/workflows | |
parent | dfa1620b53b652a71eee10a22f2bf23fc291d6e3 (diff) | |
download | translated-content-56d05b0f0e6e89389c1a3c23084dffe8a573c6f4.tar.gz translated-content-56d05b0f0e6e89389c1a3c23084dffe8a573c6f4.tar.bz2 translated-content-56d05b0f0e6e89389c1a3c23084dffe8a573c6f4.zip |
fail on unsafe html (#188)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/pr-test.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index cc088b8604..2ae87adf06 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -61,7 +61,7 @@ jobs: # this to "*:error" which means the slightest flaw in the build # will break the build. # See https://github.com/mdn/yari/issues/715 - export BUILD_FLAW_LEVELS="*:ignore" + export BUILD_FLAW_LEVELS="unsafe_html: error, *:ignore" # Note, it might be interesting to explore building *some* # pages in a PR build if the diff doesn't have any index.html |