Skip to content

Commit

Permalink
Merge pull request #30 from Mohmn/feat/semantic-version-2
Browse files Browse the repository at this point in the history
Feat/semantic version 2
  • Loading branch information
Mohmn authored Jul 16, 2024
2 parents b90bf5e + 64cd0d9 commit 94dc40b
Show file tree
Hide file tree
Showing 4 changed files with 2,124 additions and 65 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pull-request-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ jobs:
with:
node-version: '18.x'

- name: npm clean install
run: npm ci
- name: yarn clean install
run: yarn install --frozen-lockfile


- name: Typescript compiles
run: yarn build
Expand Down
22 changes: 22 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip-ci]"
}
],
"@semantic-release/github"
]
}
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,28 +36,29 @@
"tslib": "^2.3.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.2",
"@types/express": "^4.17.13",
"@types/jest": "^29.4.0",
"@types/node": "~18.7.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "~8.46.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.4.1",
"jest-environment-node": "^29.4.1",
"prettier": "^2.6.2",
"prisma": "^5.5.1",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.1.3",
"@nestjs/cli": "^9.0.0",
"@types/express": "^4.17.13",
"eslint-plugin-prettier": "^4.0.0",
"semantic-release": "19.0.2",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.3",
"tsconfig-paths": "4.2.0"
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "~5.1.3"
},
"jest": {
"moduleFileExtensions": [
Expand Down
Loading

0 comments on commit 94dc40b

Please sign in to comment.