diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index de73307..03d1c52 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -57,6 +57,7 @@ jobs: env: GPG_PRIVATE_KEY: ${{ secrets.SEMANTIC_RELEASE_GPG_PRIVATE_KEY }} run: | + echo "$GPG_PRIVATE_KEY" echo "$GPG_PRIVATE_KEY" > private.key gpg --batch --import private.key git config --global commit.gpgSign true diff --git a/apps/app/src/styles.scss b/apps/app/src/styles.scss index 11d8cf6..861b710 100644 --- a/apps/app/src/styles.scss +++ b/apps/app/src/styles.scss @@ -3,11 +3,6 @@ @use './scss/main'; -// app-you-won, -// #confetti { -// display: none; -// } - html { cursor: default; @@ -63,17 +58,15 @@ h6 { font-size: var(--font-size-sm); } -#confetti { - position: relative; - z-index: 100; -} - button, .btn, a { - cursor: default; - &:hover { opacity: 0.8; } } + +#confetti { + position: relative; + z-index: 100; +} diff --git a/eslint.config.mjs b/eslint.config.mjs index 51c2f8b..18a57de 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -174,8 +174,15 @@ export default [ yoda: ['warn', 'always'], 'no-implicit-coercion': ['warn', { boolean: true }], 'no-extra-boolean-cast': 'warn', - '@typescript-eslint/strict-boolean-expressions': 'warn', '@typescript-eslint/no-unnecessary-boolean-literal-compare': 'warn', + '@typescript-eslint/strict-boolean-expressions': [ + 'warn', + { + allowNullableObject: false, + allowNumber: false, + allowString: false, + }, + ], }, }, {