mirror of
https://github.com/immich-app/immich.git
synced 2024-12-01 09:51:16 +02:00
5912fcc393
* chore: add node version pinning with .nvmrc and volta for the typescript sdk * ci: add missing setup-node actions and use .nvmrc for setup-node node-version
49 lines
910 B
YAML
49 lines
910 B
YAML
name: Docs build
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- "docs/**"
|
|
release:
|
|
types: [published]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: ./docs
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: './docs/.nvmrc'
|
|
|
|
- name: Run npm install
|
|
run: npm ci
|
|
|
|
- name: Check formatting
|
|
run: npm run format
|
|
|
|
- name: Run build
|
|
run: npm run build
|
|
|
|
- name: Upload build output
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: docs-build-output
|
|
path: docs/build/
|
|
retention-days: 1
|