Skip to content

Commit

Permalink
Merge pull request #2 from techconative/package
Browse files Browse the repository at this point in the history
Package
  • Loading branch information
sundarlogan authored Apr 12, 2024
2 parents d7e29c5 + 54f620b commit 04c9dce
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
tag_name: ${{ github.ref_name }}
release_name: ${{ github.ref_name }}
draft: false
prerelease: false

publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup .npmrc file to publish to npm
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '14.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- name: Install modules
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
os:
- ubuntu-latest
- windows-latest
node: [12.x, 14.x, 16.x]
node: [20.x]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# AzureDevOps Test Reporter

work in progress
# AzureDevOps Test Reporter TS
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.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "azuredevops-test-reporter",
"version": "0.0.9",
"description": "Azure DevOps Test Reporter to inject result of automatic test run in Azure DevOps TestPlan",
"name": "azuredevops-test-reporter-ts",
"version": "0.0.1",
"description": "Azure DevOps Test Reporter TS to inject result of automatic test run in Azure DevOps TestPlan",
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.js",
Expand All @@ -21,7 +21,7 @@
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node tools/packagejson name @gmangiapelo/azuredevops-test-reporter"
"addscope": "node tools/packagejson name @techconative/azuredevops-test-reporter-ts"
},
"publishConfig": {
"access": "public"
Expand All @@ -38,15 +38,15 @@
"typescript",
"esm"
],
"author": "Gianluca Mangiapelo <gianlucamangiapelo.mangiapelog@gmail.com>",
"author": "Vivek Dhayalan <vivek.dhayalan@techconative.com>",
"license": "MIT",
"homepage": "https://github.com/gianlucamangiapelo/azuredevops-test-reporter",
"homepage": "https://github.com/techconative/azuredevops-test-reporter",
"repository": {
"type": "git",
"url": "[email protected]:gianlucamangiapelo/azuredevops-test-reporter.git"
"url": "[email protected]:techconative/azuredevops-test-reporter.git"
},
"bugs": {
"url": "https://github.com/gianlucamangiapelo/azuredevops-test-reporter/issues"
"url": "https://github.com/techconative/azuredevops-test-reporter/issues"
},
"dependencies": {
"axios": "^0.27.2",
Expand Down

0 comments on commit 04c9dce

Please sign in to comment.