Skip to content

Commit

Permalink
fix(ci): remove test ci step
Browse files Browse the repository at this point in the history
  • Loading branch information
csantiago132 committed Dec 8, 2024
1 parent c14ddb3 commit 50f0990
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,13 @@ jobs:
uses: kurocado-studio/styleguide/.github/workflows/workflow.lint.yml@main
secrets: inherit

test:
needs: lint
uses: kurocado-studio/styleguide/.github/workflows/workflow.test.yml@main
secrets: inherit

document:
needs: test
needs: lint
uses: kurocado-studio/styleguide/.github/workflows/workflow.document.yml@main
secrets: inherit

release:
needs: test
needs: lint
uses: kurocado-studio/styleguide/.github/workflows/workflow.release.yml@main
secrets: inherit
with:
Expand Down
2 changes: 2 additions & 0 deletions src/eslint/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import unicornRecommended from 'eslint-plugin-unicorn';
import vitestRecommended from 'eslint-plugin-vitest';

import { base } from './rules/base/index.js';
import { typescriptEslintConfig } from './rules/typescript/index.js';

const SPEC_PREFIX = 'spec';
const TEST_PREFIX = 'test';
Expand Down Expand Up @@ -82,6 +83,7 @@ export const typescriptLanguageRootConfig = {
...base.rules,
...eslintPluginImport.configs.recommended.rules,
...eslintPluginImport.configs.typescript.rules,
...typescriptEslintConfig.rules,
},
settings: {
'import/resolver': { node: {} },
Expand Down

0 comments on commit 50f0990

Please sign in to comment.