Skip to content

Commit 0529b84

Browse files
authored
Fix smoke test NPM release (#187)
1 parent 0517d21 commit 0529b84

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.github/workflows/publish_release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ jobs:
4343
env:
4444
INCOMING_WEBHOOK_URL: ${{secrets.SUCCESS_DEPLOYMENT_PRODUCT_URL}}
4545

46-
- name: Smoke test NPM release
47-
run: npm run test:smoke
46+
- run: ./smoke_test_npm_release.sh
4847
env:
4948
ABOUND_SMOKE_TEST_APP_ID: ${{secrets.ABOUND_SMOKE_TEST_APP_ID}}
5049
ABOUND_SMOKE_TEST_APP_SECRET: ${{secrets.ABOUND_SMOKE_TEST_APP_SECRET}}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@withabound/node-sdk",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"description": "The Abound Node library provides convenient access to the Abound API from applications written in server-side JavaScript.",
55
"author": "Abound <[email protected]>",
66
"license": "MIT",
@@ -23,8 +23,7 @@
2323
"compile": "npx tsc --noEmit",
2424
"lint": "npx xo",
2525
"postinstall": "npx genversion --es6 --semi --double src/version.ts",
26-
"test": "npx vitest",
27-
"test:smoke": "./smoke_test_npm_release.sh"
26+
"test": "npx vitest"
2827
},
2928
"lint-staged": {
3029
"**/*": "prettier --write --ignore-unknown",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by genversion.
2-
export const version = "5.0.0";
2+
export const version = "5.0.1";

0 commit comments

Comments
 (0)