Skip to content

Commit

Permalink
fix(global): incorrect CI building
Browse files Browse the repository at this point in the history
  • Loading branch information
Mati365 committed Oct 21, 2023
1 parent 5d47eab commit 99e5b54
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ jobs:
restore-keys: |
turbo-${{ github.job }}-${{ github.ref_name }}
- name: Check types
run: yarn check:types

- name: Lint files
run: yarn lint

- name: Test files
run: yarn lint
run: yarn test

- name: Build files
run: yarn build

- name: Check types
run: yarn check:types
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type EsMonadicDecoratorOptions = {
* EsMonadicDecorator is wrapper over default ES client that
* wraps every required by framework method in TaskEither.
*/
export class EsMonadicDecorator {
export class EsMonadicClient {
private readonly client: es.Client;

private readonly logger: AbstractLogger;
Expand Down
2 changes: 1 addition & 1 deletion packages/reindex/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './es-monadic-decorator';
export * from './es-monadic-client';

0 comments on commit 99e5b54

Please sign in to comment.