Skip to content

Commit

Permalink
build examples as its own step in gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Aug 8, 2024
1 parent d887a7f commit ba30934
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/deploy-vercel-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ jobs:
run: npm install --global vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build All Projects
run: yarn turbo:command build --filter=!examples --filter=!api_refs --filter=!core_docs --filter=!create-langchain-integration
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
Expand Down
3 changes: 1 addition & 2 deletions docs/api_refs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@
"dev": "next dev -p 3001",
"typedoc:build": "npx typedoc --options typedoc.json",
"build:scripts": "node ./scripts/create-entrypoints.js && yarn typedoc:build && node ./scripts/update-typedoc-css.js",
"build:packages": "yarn turbo:command build --filter=!examples --filter=!api_refs --filter=!core_docs --filter=!create-langchain-integration",
"build": "yarn clean && yarn build:packages && yarn build:scripts && next build",
"build": "yarn clean && yarn build:scripts && next build",
"start": "yarn build && next start -p 3001",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
Expand Down

0 comments on commit ba30934

Please sign in to comment.