-
Notifications
You must be signed in to change notification settings - Fork 10
39 lines (35 loc) · 1019 Bytes
/
gh-pages-test.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: Deploy to GitHub Pages [PR Test]
on:
pull_request:
branches:
- master
# 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
defaults:
run:
working-directory: docs
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: docs
# setup .NET to build markdown files
- name: Setup .NET Core SDK 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Build packet diagrams
run: dotnet run --verbosity:quiet
working-directory: src/Executables/DocsGenerator
- name: Install dependencies
run: npm ci
- name: Test build website
run: npm run build