Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benallfree committed Apr 27, 2024
1 parent 46073be commit 1864562
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,5 @@ jobs:
- name: Install deps
run: pnpm i

- name: Start verdaccio
run: |
pnpm verdaccio:serve &
sleep 5
pnpm verdaccio:login
- name: Test ${{ matrix.app }}
run: pnpm plop test "app:${{ matrix.app }}" --no-progress
5 changes: 3 additions & 2 deletions plop/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { RIMRAF_SAFE_PATHS } from '../src/util/safeRimraf'
import { mkdir } from '../src/util/shell'
import { SRC_PACKAGE_ROOT } from './commands/helpers/root'
import {} from './commands/util/exec'
import { startVerdaccio } from './commands/util/startVerdaccio'

const args = process.argv.slice(2)
const argv = minimist(args)
Expand Down Expand Up @@ -51,9 +52,9 @@ async function main() {
(env) => {
Plop.execute(env, async (env, argv) => {
try {
// const stop = await startVerdaccio()
const stop = await startVerdaccio()
await run(env, undefined, false)
// await stop()
await stop()
resolve()
} catch (e) {
reject(e)
Expand Down

0 comments on commit 1864562

Please sign in to comment.