-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci-cd): add changelog generation step
add the missing ci checks in pr GH-55
- Loading branch information
1 parent
218548c
commit 230f003
Showing
4 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
# This workflow contains a single job called "npm_test" | ||
jobs: | ||
npm_test: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' | ||
|
||
- name: Install Dependencies 📌 | ||
run: npm ci | ||
|
||
- name: Run Test Cases 🔧 | ||
run: npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
run: | | ||
git config --global user.name $CONFIG_USERNAME | ||
git config --global user.email $CONFIG_EMAIL | ||
git remote set-url origin https://$GITHUB_ACTOR:[email protected]/sourcefuse/loopback4-microservice-catalog | ||
git remote set-url origin https://$GITHUB_ACTOR:[email protected]/sourcefuse/loopback4-kafka-client | ||
env: | ||
GITHUB_PAT: ${{ secrets.RELEASE_COMMIT_GH_PAT }} | ||
CONFIG_USERNAME: ${{ vars.RELEASE_COMMIT_USERNAME }} | ||
|
@@ -47,4 +47,6 @@ jobs: | |
run: HUSKY=0 npx semantic-release | ||
env: | ||
GH_TOKEN: ${{ secrets.RELEASE_COMMIT_GH_PAT }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
- name: Changelog 📝 | ||
run: cd src/release_notes && HUSKY=0 node release-notes.js |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters