mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
Fixes typedoc & updates pipelines to test website
This commit is contained in:
parent
422d19e3d6
commit
31416aac58
3 changed files with 21 additions and 11 deletions
22
.github/workflows/ci.yml
vendored
22
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
4
.github/workflows/website.yml
vendored
4
.github/workflows/website.yml
vendored
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue