mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-08-10 23:51:33 +00:00
.github
ISSUE_TEMPLATE
workflows
build-preview.yaml
ci.yaml
deploy-preview.yaml
docker-build-push.yaml
FUNDING.yml
dependabot.yml
content
docs
quartz
.gitattributes
.gitignore
.node-version
.npmrc
.prettierignore
.prettierrc
CODE_OF_CONDUCT.md
Dockerfile
LICENSE.txt
README.md
globals.d.ts
index.d.ts
package-lock.json
package.json
quartz.config.ts
quartz.layout.ts
tsconfig.json
44 lines
963 B
YAML
44 lines
963 B
YAML
name: Build Preview Deployment
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-preview:
|
|
if: ${{ github.repository == 'jackyzha0/quartz' }}
|
|
runs-on: ubuntu-latest
|
|
name: Build Preview
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- run: npm ci
|
|
|
|
- name: Check types and style
|
|
run: npm run check
|
|
|
|
- name: Build Quartz
|
|
run: npx quartz build -d docs -v
|
|
|
|
- name: Upload build artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: preview-build
|
|
path: public
|