Skip to content

Commit

Permalink
spell-env
Browse files Browse the repository at this point in the history
  • Loading branch information
whitetechna committed Mar 13, 2024
1 parent fc9f19f commit 54e37f4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bridge-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Build Svelte app
env:
SKIP_ENV_VALDIATION: "true"
SKIP_ENV_VALIDATION: "true"
working-directory: ./packages/bridge-ui
run: pnpm build

Expand All @@ -51,7 +51,7 @@ jobs:

- name: Unit tests
env:
SKIP_ENV_VALDIATION: "true"
SKIP_ENV_VALIDATION: "true"
working-directory: ./packages/bridge-ui
run: pnpm test:unit

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotenv.config();
const pluginName = 'generateBridgeConfig';
const logger = new PluginLogger(pluginName);

const skip = process.env.SKIP_ENV_VALDIATION === 'true';
const skip = process.env.SKIP_ENV_VALIDATION === 'true';

const currentDir = path.resolve(new URL(import.meta.url).pathname);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dotenv.config();
const pluginName = 'generateChainConfig';
const logger = new PluginLogger(pluginName);

const skip = process.env.SKIP_ENV_VALDIATION === 'true';
const skip = process.env.SKIP_ENV_VALIDATION === 'true';

const currentDir = path.resolve(new URL(import.meta.url).pathname);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dotenv.config();
const pluginName = 'generateTokens';
const logger = new PluginLogger(pluginName);

const skip = process.env.SKIP_ENV_VALDIATION === 'true';
const skip = process.env.SKIP_ENV_VALIDATION === 'true';

const currentDir = path.resolve(new URL(import.meta.url).pathname);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dotenv.config();
const pluginName = 'generateEventIndexerConfig';
const logger = new PluginLogger(pluginName);

const skip = process.env.SKIP_ENV_VALDIATION === 'true';
const skip = process.env.SKIP_ENV_VALIDATION === 'true';

const currentDir = path.resolve(new URL(import.meta.url).pathname);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dotenv.config();
const pluginName = 'generateRelayerConfig';
const logger = new PluginLogger(pluginName);

const skip = process.env.SKIP_ENV_VALDIATION === 'true';
const skip = process.env.SKIP_ENV_VALIDATION === 'true';

const currentDir = path.resolve(new URL(import.meta.url).pathname);

Expand Down

0 comments on commit 54e37f4

Please sign in to comment.