forked from DTLab-LabCN/DTT-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (33 loc) · 1.07 KB
/
test-deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Test deployment
# This just runs the build step, without deploying, so you know that your PR will at least build
# Will it look good ? You need to deploy to know...
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
on:
pull_request:
branches:
- main
env:
DTT_DOCS_URL: ${{ vars.DTT_DOCS_URL }}
DTT_DOCS_BASE_PATH: ${{ vars.DTT_DOCS_BASE_PATH }}
ORGANIZATION_NAME: ${{ github.repository_owner }}
PROJECT_NAME: ${{ github.event.repository.name }}
jobs:
test-build:
name: Test building the documentation static web site with docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
# - name: list environment variables
# run: |
# env && exit 1
- name: Test build website
run: npm run build