Skip to content

Commit

Permalink
Merge pull request #576 from mkszepp/remove-prepublish
Browse files Browse the repository at this point in the history
Remove `prepublishOnly` in favor of `prepack` script to fix randomly test failing
  • Loading branch information
NullVoxPopuli authored Aug 4, 2024
2 parents 64ab29c + 7272f11 commit 704af2d
Show file tree
Hide file tree
Showing 4 changed files with 896 additions and 392 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,7 @@ jobs:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
run: |
pnpm _syncPnpm
./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
working-directory: test-app
2 changes: 1 addition & 1 deletion addon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
],
"scripts": {
"build": "rollup --config",
"prepublishOnly": "rollup --config",
"prepack": "rollup --config",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
Expand Down
Loading

0 comments on commit 704af2d

Please sign in to comment.