-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: Add Docs build to CI * Added build-docs to flow * Updated to run in the /docs folder * Made web app build have consistent name * Added a kill after the command runs * Test the build * Added it to the PR flow
- Loading branch information
1 parent
2c25f88
commit feefa26
Showing
3 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# This is just to test this file | ||
name: Build | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
name: Build Docs | ||
permissions: | ||
contents: read | ||
runs-on: buildjet-2vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ./.github/actions/dangerous-git-checkout | ||
- name: Cache Docs build | ||
uses: buildjet/cache@v4 | ||
id: cache-docs-build | ||
env: | ||
cache-name: docs-build | ||
key-1: ${{ hashFiles('yarn.lock') }} | ||
key-2: ${{ hashFiles('docs/**.*', '!**/node_modules') }} | ||
key-3: ${{ github.event.pull_request.number || github.ref }} | ||
key-4: ${{ github.sha }} | ||
with: | ||
path: | | ||
**/docs/** | ||
key: ${{ runner.os }}-${{ env.cache-name }}-${{ env.key-1 }}-${{ env.key-2 }}-${{ env.key-3 }}-${{ env.key-4 }} | ||
- name: Run build | ||
working-directory: docs | ||
run: | | ||
export NODE_OPTIONS="--max_old_space_size=8192" | ||
if [ ${{ steps.cache-docs-build.outputs.cache-hit }} == 'true' ]; then | ||
echo "Cache hit for Docs build. Skipping build." | ||
else | ||
npm install -g mintlify | ||
mintlify dev & | ||
sleep 5 # Let it run for 5 seconds | ||
kill $! | ||
fi | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters