Skip to content

Commit

Permalink
chore(notifications): ignore typos in locales
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts authored and UncleSamtoshi committed Feb 7, 2024
1 parent a267c1d commit cc4bc86
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ jobs:
echo "Prepared args: $ARGS"
echo "args=$ARGS" >> "$GITHUB_OUTPUT"
- name: Build/start deps and run tests via tilt
id: tilt_test
if: steps.prepare_args.outputs.args != ''
run: nix develop -c xvfb-run ./dev/bin/tilt-ci.sh ${{ steps.prepare_args.outputs.args }}
- name: Rename Tilt log
if: always()
if: steps.tilt_test.outcome == 'success' || steps.tilt_test.outcome == 'failure'
run: mv dev/.e2e-tilt.log dev/e2e-tilt.log
- name: Upload Tilt log
if: always()
if: steps.tilt_test.outcome == 'success' || steps.tilt_test.outcome == 'failure'
uses: actions/upload-artifact@v2
with:
name: Tilt log
Expand Down
3 changes: 2 additions & 1 deletion typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ files.extend-exclude = [
"quickstart/dev",
"prelude",
"core/api/test/e2e/servers/kratos.spec.ts",
"core/notifications/locales/*.yml"
]

default.extend-ignore-identifiers-re = [
Expand All @@ -22,4 +23,4 @@ default.extend-ignore-re = ["\"eyJ[a-zA-Z0-9_\\-\\.]+\""]
# returned from twilio API referenced in src/debug/text-sms.ts
Ons = "Ons"
Lsat = "Lsat"
quizs = "quizs"
quizs = "quizs"

0 comments on commit cc4bc86

Please sign in to comment.