Skip to content

Commit 5cd938d

Browse files
authored
test(nestjs): Add canary test for latest (#18685)
Adding a canary test for nestjs using the `latest` tag. There is also a `next` tag that seems to be used for upcoming majors, but using that all the tests break so I removed it again for now. see [npm nestjs/core tags](https://www.npmjs.com/package/@nestjs/core?activeTab=versions) Closes #18668
1 parent ed0a0fa commit 5cd938d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/canary.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ jobs:
114114
- test-application: 'nuxt-4'
115115
build-command: 'test:build-canary'
116116
label: 'nuxt-4 (canary)'
117+
- test-application: 'nestjs-11'
118+
build-command: 'test:build-latest'
119+
label: 'nestjs-11 (latest)'
117120

118121
steps:
119122
- name: Check out current commit

dev-packages/e2e-tests/test-applications/nestjs-11/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"clean": "npx rimraf node_modules pnpm-lock.yaml",
1212
"test": "playwright test",
1313
"test:build": "pnpm install",
14+
"test:build-latest": "pnpm install && pnpm add @nestjs/common@latest @nestjs/core@latest @nestjs/platform-express@latest @nestjs/microservices@latest && pnpm add -D @nestjs/cli@latest @nestjs/testing@latest && pnpm build",
1415
"test:assert": "pnpm test"
1516
},
1617
"dependencies": {

0 commit comments

Comments
 (0)