File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1616 - run : npm ci
1717 - run : npx eslint .
1818
19+ examples :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - uses : actions/checkout@v2
23+ - uses : actions/setup-node@v2
24+ with : { node-version: 16 }
25+ - run : npm ci
26+ - run : npm run prepack
27+ - run : npm run build --workspaces
28+
1929 pack :
2030 runs-on : ubuntu-latest
2131 steps :
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ window.MonacoEnvironment = {
116116 new URL (' monaco-editor/esm/vs/language/typescript/ts.worker' , import .meta.url),
117117 );
118118 case ' yaml' :
119- return new Worker (new URL (' monaco-yaml/lib/esm/ yaml.worker' , import .meta.url));
119+ return new Worker (new URL (' monaco-yaml/yaml.worker' , import .meta.url));
120120 default:
121121 throw new Error (` Unknown label ${ label} ` );
122122 }
You can’t perform that action at this time.
0 commit comments