Skip to content

Commit

Permalink
feat(ci): check for translation crashes
Browse files Browse the repository at this point in the history
We have had issues in the past of translations causing crashes due to
malformed directives in .po files (e.g. unescaped '{').

Have CI check that such crashes don't happen (at least for documented
errors).
  • Loading branch information
strager committed Jul 1, 2022
1 parent 237b11d commit c36a92a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/check-error-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
- name: JS configure
run: cd website && yarn install --production

- name: check
- name: check docs
run: node website/check-error-documentation.mjs
- name: check diagnostics
run: node website/check-diagnostic-messages.mjs

# quick-lint-js finds bugs in JavaScript programs.
# Copyright (C) 2020 Matthew Glazar
Expand Down

0 comments on commit c36a92a

Please sign in to comment.