Skip to content

Commit

Permalink
ci(snippet checker): Always enable beta features (#579)
Browse files Browse the repository at this point in the history
There may be beta features in the cds-compiler that we document
on CAPire.  We should enable all beta features during syntax check.
  • Loading branch information
bugwelle authored Dec 13, 2023
1 parent 78252b4 commit 34a83f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/cds-snippet-checker/check-cds-snippets.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function printErrorForSnippet(snippet, messages) {
* @param {object} snippet
*/
function compileSnippet(snippet) {
const options = { messages: snippet.messages };
const options = { messages: snippet.messages, betaMode: true };

const compile = () => {
try {
Expand Down

0 comments on commit 34a83f2

Please sign in to comment.