Fixes typedoc & updates pipelines to test website

This commit is contained in:
Henning Dieterichs 2025-11-07 16:53:52 +01:00
parent 422d19e3d6
commit 31416aac58
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06
3 changed files with 21 additions and 11 deletions

View file

@ -83,14 +83,18 @@ jobs:
- name: Run smoke test - name: Run smoke test
run: npm run smoketest run: npm run smoketest
# - name: Install website node modules - name: Install website node modules
# working-directory: website working-directory: website
# run: yarn install --frozen-lockfile run: npm ci
# - name: Build website - name: Install most recent version of monaco-editor
# working-directory: website working-directory: website
# run: yarn run build run: npm install monaco-editor
# - name: Test website - name: Build website
# working-directory: website working-directory: website
# run: yarn test run: npm run build
- name: Test website
working-directory: website
run: npm run test

View file

@ -52,6 +52,10 @@ jobs:
working-directory: website working-directory: website
run: npm run build run: npm run build
- name: Test website
working-directory: website
run: npm run test
- name: Setup Pages - name: Setup Pages
uses: actions/configure-pages@v5 uses: actions/configure-pages@v5
- name: Upload artifact - name: Upload artifact

View file

@ -1,8 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "CommonJS", "module": "CommonJS",
"skipLibCheck": true "skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true
}, },
"include": ["../../out/monaco-editor/esm/vs/editor/editor.api.d.ts"], "include": ["../../out/monaco-editor/esm/vs/editor/editor.main.d.ts"],
"exclude": ["theme"] "exclude": ["theme"]
} }