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 0d9a19c commit 52e97edCopy full SHA for 52e97ed
.github/workflows/i18n.yml
@@ -0,0 +1,24 @@
1
+name: i18n Check
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - main
6
+ push:
7
8
9
+
10
+jobs:
11
+ i18n-check:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@master
16
17
+ - name: Install Dependencies
18
+ run: bun install
19
20
+ - name: i18n Check
21
+ run: bun run i18n:check
22
23
+ - name: i18n Validate Configuration
24
+ run: bun run i18n:validate
.github/workflows/test.yml
@@ -13,4 +13,4 @@ jobs:
- run: bun install
- run: bunx svelte-kit sync
- run: bun run lint
- - run: bun test
+ - run: bun run test
0 commit comments