Skip to content

Commit

Permalink
chore: added env variables to gh checks
Browse files Browse the repository at this point in the history
  • Loading branch information
dafuga committed Oct 3, 2024
1 parent 7b7dc43 commit 7a5c59d
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ name: Code Checks
on:
push:

env:
PUBLIC_LOCAL_SIGNER: ''
API_EOS_CHAIN: 'https://eos.greymass.com'
API_EOS_HISTORY: 'https://eos.greymass.com'
API_EOS_METRICS: 'https://unicove-eos.greymass.io/api'
API_JUNGLE4_CHAIN: 'https://jungle4.greymass.com'
API_JUNGLE4_HISTORY: 'https://jungle4.greymass.com'
API_KYLIN_CHAIN: 'https://kylin.greymass.com'
API_KYLIN_HISTORY: 'https://kylin.greymass.com'

jobs:
formatting:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion src/lib/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createI18n } from '@inlang/paraglide-sveltekit';
import * as runtime from './paraglide/runtime.js';
import * as runtime from './paraglide/runtime';
import type { Asset } from '@wharfkit/antelope';

export const i18n = createI18n(runtime, {
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import * as m from '$lib/paraglide/messages.js';
import * as m from '$lib/paraglide/messages';
import Button from '$lib/components/button/button.svelte';
import { Box, Stack } from '$lib/components/layout';
import { languageTag } from '../lib/paraglide/runtime';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { PageLoad } from './$types';
import * as m from '../../../../../../../lib/paraglide/messages.js';
import * as m from '../../../../../../../lib/paraglide/messages';
import { error } from '@sveltejs/kit';

export const load: PageLoad = async ({ params, parent }) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { PageLoad } from './$types';
import * as m from '$lib/paraglide/messages.js';
import * as m from '$lib/paraglide/messages';
import type { LoadEvent } from '@sveltejs/kit';

export const load: PageLoad = async ({ parent }: LoadEvent) => {
Expand Down

0 comments on commit 7a5c59d

Please sign in to comment.