From 3640375d46f38cd6155e9ee126fa371130c27245 Mon Sep 17 00:00:00 2001 From: sricharankrishnan Date: Mon, 1 Jun 2026 11:50:32 +0530 Subject: [PATCH] V-0.12.0 --- .github/workflows/publish.yml | 13 +++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2487552..27b6846 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,6 +15,7 @@ jobs: #vm instance runs-on: ubuntu-latest + # various tasks that would be executed steps: - name: Start Test run: echo "Start Package Test" @@ -42,6 +43,12 @@ jobs: - name: Run tests run: npm test -- --runInBand + - name: Upload Test Artifact + uses: actions/upload-artifact@v4 + with: + name: test-output + path: coverage/ + - name: End Message run: echo "End Package Test" @@ -82,5 +89,11 @@ jobs: - name: Publish to npm run: npm publish + - name: Upload Publish Artifact + uses: actions/upload-artifact@v4 + with: + name: publish-output + path: dist/ + - name: End Message run: echo "End Package Publish" diff --git a/package-lock.json b/package-lock.json index 7af8ea3..48fa1af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tiny-ok-message", - "version": "0.3.0", + "version": "0.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tiny-ok-message", - "version": "0.3.0", + "version": "0.11.0", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.14", diff --git a/package.json b/package.json index 1ab65d3..4c9a125 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "utility" ], "license": "MIT", - "version": "0.11.0", + "version": "0.12.0", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts",