We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad1431b commit 88f6ad5Copy full SHA for 88f6ad5
.github/workflows/ci.yml
@@ -65,6 +65,7 @@ jobs:
65
66
- name: Clippy
67
run: cargo clippy --workspace --all-targets -- -D warnings
68
+
69
ci-webui:
70
name: Build Web UI (Linux)
71
runs-on: ubuntu-latest
@@ -81,3 +82,20 @@ jobs:
81
82
83
- name: Build
84
run: npm run build -w components/secutils-webui
85
86
+ ci-docs:
87
+ name: Build Docs (Linux)
88
+ runs-on: ubuntu-latest
89
+ steps:
90
+ - uses: actions/checkout@v4
91
92
+ - uses: actions/setup-node@v4
93
+ with:
94
+ node-version-file: '.nvmrc'
95
+ cache: 'npm'
96
97
+ - name: Install dependencies
98
+ run: npm ci --ws
99
100
+ - name: Build
101
+ run: npm run build -w components/secutils-docs
0 commit comments