Skip to content

Commit

Permalink
updated git workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
fraliv13 committed Sep 14, 2022
1 parent 8c2ff41 commit 6d296ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Run tests
run: yarn test
- name: Upgrade version based on Changeset
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ jobs:
node-version: 16.x
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build
- name: Run tests
run: yarn test
2 changes: 1 addition & 1 deletion packages/pino-apollo/src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { GraphQLRequestListener } from 'apollo-server-plugin-base/src/index'
import { v4 } from 'uuid'
import { ApolloContextExtension, ApolloLoggingOptions } from './types'
import { Logger } from 'pino'
import {correlationManager} from '@totalsoft/correlation'
import { correlationManager } from '@totalsoft/correlation'

export class ApolloLoggerPlugin implements ApolloServerPlugin<ApolloContextExtension> {
private securedMessages: boolean
Expand Down

0 comments on commit 6d296ba

Please sign in to comment.