Skip to content
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
13 changes: 13 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"

Expand Down Expand Up @@ -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"
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading