Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/pending-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,20 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 10

- name: Install dependencies
run: pnpm install --frozen-lockfile --recursive
env:
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true'

- name: Setup Google Chrome
uses: browser-actions/setup-chrome@v2
id: setup-chrome
with:
install-dependencies: true

- uses: nickcharlton/diff-check@main
with:
command: pnpm run compile
command: pnpm dev & pnpm run compile
env:
CHROME_PATH: ${{ steps.setup-chrome.outputs.chrome-path }}
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@
],
"scripts": {
"dev": "vite",
"dev:integrations": "concurrently -k \"pnpm run dev:integrations:next\" \"pnpm run dev:integrations:vike\" \"pnpm run dev:integrations:vite\"",
"dev:integrations": "pnpm run /^dev:integrations:.*/",
"dev:integrations:next": "pnpm -C integrations/next/ run dev",
"dev:integrations:vike": "pnpm -C integrations/vike/ run dev",
"dev:integrations:vite": "pnpm -C integrations/vite/ run dev",
"build": "pnpm run build:lib && pnpm run build:docs",
"build": "pnpm run /^build:.*/",
"build:docs": "cross-env TARGET=docs vite build",
"build:lib": "cross-env TARGET=lib vite build",
"compile": "pnpm run compile:docs && pnpm run compile:examples",
"compile": "pnpm run --sequential /^compile:.*/",
"compile:docs": "tsx ./scripts/compile-docs",
"compile:examples": "tsx ./scripts/compile-examples",
"compile:search-index": "tsx ./scripts/compile-search-index",
"compress:og-image": "tsx ./scripts/compress-og-image",
"e2e:install": "pnpm -C integrations/tests exec playwright install --with-deps",
"e2e:test": "pnpm -C integrations/tests run test",
Expand Down Expand Up @@ -91,11 +92,12 @@
"postcss": "^8.5.6",
"prettier": "3.6.2",
"prettier-plugin-tailwindcss": "^0.7.1",
"puppeteer": "^24.38.0",
"react": "^19.2.3",
"react-docgen-typescript": "^2.4.0",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.0",
"react-lib-tools": "0.0.35",
"react-lib-tools": "^0.0.44",
"react-router-dom": "^7.6.3",
"rimraf": "^6.1.2",
"rollup-plugin-terser": "^7.0.2",
Expand Down
Loading
Loading