Skip to content

Commit

Permalink
ci: debug postinstall workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zachstence committed Aug 7, 2024
1 parent 9fcb5ed commit f51e568
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/debug-postinstall.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Debug Postinstall

on:
push:

jobs:
debug-postinstall:
name: Debug Postinstall
runs-on: windows-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Action Setup (pnpm)
uses: pnpm/action-setup@v4
with:
version: 8

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Debug
run: pnpm debug-postinstall
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@
"test": "pnpm -r test",
"test:component-utilities:watch": "pnpm --filter ./packages/lib/component-utilities test:watch",
"postinstall": "run-s build:plugin-connector build:preprocess build:tailwind package:core-components build:evidence",
"debug-postinstall": "run-s msg build:plugin-connector msg",
"msg": "echo ==================================================================",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"sources:docs": "pnpm --filter ./sites/docs sources",
Expand Down Expand Up @@ -112,4 +114,4 @@
"fast-xml-parser": ">=4.4.1"
}
}
}
}

0 comments on commit f51e568

Please sign in to comment.