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
run: npm run smoketest
# - name: Install website node modules
# working-directory: website
# run: yarn install --frozen-lockfile
- name: Install website node modules
working-directory: website
run: npm ci
# - name: Build website
# working-directory: website
# run: yarn run build
- name: Install most recent version of monaco-editor
working-directory: website
run: npm install monaco-editor
# - name: Test website
# working-directory: website
# run: yarn test
- name: Build website
working-directory: website
run: npm run build
- name: Test website
working-directory: website
run: npm run test

View file

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

View file

@ -1,8 +1,10 @@
{
"compilerOptions": {
"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"]
}