Skip to content

Commit

Permalink
chore: Delete tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeinlschmidt committed Jul 3, 2023
1 parent 7a06173 commit d0135f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
path: dist/
- name: Delete examples
run: rm -r dist/**/examples
- name: Delete tests
run: rm -r dist/**/*.spec*
- run: npm pack
- run: npm publish jkba-rxjs-fsm-*.tgz --access public
env:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jkba/rxjs-fsm",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "rxjs-fsm",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand All @@ -11,7 +11,7 @@
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "jest",
"prepublishOnly": "npm run build && rm -r dist/**/examples"
"prepublishOnly": "npm run build && rm -r dist/**/examples && rm -r dist/**/*.spec*"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit d0135f8

Please sign in to comment.