diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml new file mode 100644 index 0000000..dae4ae2 --- /dev/null +++ b/.github/workflows/main.yaml @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c672a57..d661465 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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:$GITHUB_PAT@github.com/sourcefuse/loopback4-microservice-catalog + git remote set-url origin https://$GITHUB_ACTOR:$GITHUB_PAT@github.com/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 }} \ No newline at end of file + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Changelog 📝 + run: cd src/release_notes && HUSKY=0 node release-notes.js diff --git a/package-lock.json b/package-lock.json index 3f2f11f..f878582 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "loopback4-kafka-client", - "version": "3.0.1", + "version": "3.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "loopback4-kafka-client", - "version": "3.0.1", + "version": "3.0.2", "license": "MIT", "dependencies": { "@loopback/boot": "^7.0.0", diff --git a/package.json b/package.json index 86df00c..4312cb6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "loopback4-kafka-client", "version": "3.0.2", - "description": "loopback client for integration with apache kafka.", + "description": "loopback client for integration with apache kafka", "keywords": [ "loopback-extension", "loopback",