Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eomm committed Sep 17, 2024
1 parent 67f0e33 commit b85d152
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ on:

jobs:
test:
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v4.1.0
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v5.0.0
with:
lint: true
2 changes: 1 addition & 1 deletion test/types/types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ fastify.register(rawBodyPlugin, options4)
fastify.register(rawBodyPlugin, options5)

fastify.get('/', { config: { rawBody: true } }, (request, reply) => {
expectType<any>(request.rawBody)
expectType<string | Buffer | undefined>(request.rawBody)
return "rawBody enabled"
})

0 comments on commit b85d152

Please sign in to comment.