Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: version 11.0.0 #1861

Merged
merged 15 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
build:
working_directory: ~/nest
docker:
- image: cimg/node:21.6
- image: cimg/node:22.3
steps:
- checkout
- restore_cache:
Expand All @@ -32,9 +32,37 @@ jobs:
- run:
name: Build
command: npm run build
e2e_test:
working_directory: ~/nest
docker:
- image: cimg/node:22.3
steps:
- checkout
- *restore-cache
- *install-deps
- run:
name: e2e tests
command: npm run test:e2e
test:
working_directory: ~/nest
docker:
- image: cimg/node:22.3
steps:
- checkout
- *restore-cache
- *install-deps
- run:
name: Unit tests
command: npm run test

workflows:
version: 2
build-and-test:
jobs:
- build
- test:
requires:
- build
- e2e_test:
requires:
- build
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
# misc
npm-debug.log
.DS_Store

# tests
/test
/coverage
/.nyc_output

Expand Down
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit $1
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install lint-staged
5 changes: 5 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
rootDir: '.',
testMatch: ['<rootDir>/src/**/*.spec.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
},
};
Loading